summaryrefslogtreecommitdiffstats
path: root/debian/linux-headers-6.1.0-20-mips32r6eb.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 10:20:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 10:20:35 +0000
commit31143ee76608ba81c7c23cf9f631db54ea20fadc (patch)
treea6b5f4d630ad9f80f35d444575b37a812924b49b /debian/linux-headers-6.1.0-20-mips32r6eb.postinst
parentSetting abiname to 20progress6.99u1. (diff)
downloadlinux-31143ee76608ba81c7c23cf9f631db54ea20fadc.tar.xz
linux-31143ee76608ba81c7c23cf9f631db54ea20fadc.zip
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-xdebian/linux-headers-6.1.0-20-mips32r6eb.postinst18
1 files changed, 0 insertions, 18 deletions
diff --git a/debian/linux-headers-6.1.0-20-mips32r6eb.postinst b/debian/linux-headers-6.1.0-20-mips32r6eb.postinst
deleted file mode 100755
index acace5ca9..000000000
--- a/debian/linux-headers-6.1.0-20-mips32r6eb.postinst
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/perl
-# Author: Michael Gilbert <michael.s.gilbert@gmail.com>
-# Origin: Stripped down version of the linux-headers postinst from Ubuntu's
-# 2.6.32-14-generic kernel, which was itself derived from a
-# Debian linux-image postinst script.
-
-$|=1;
-my $version = "6.1.0-20-mips32r6eb";
-
-if (-d "/etc/kernel/header_postinst.d") {
- system ("run-parts --report --exit-on-error --arg=$version " .
- "/etc/kernel/header_postinst.d") &&
- die "Failed to process /etc/kernel/header_postinst.d";
-}
-
-exit 0;
-
-__END__