summaryrefslogtreecommitdiffstats
path: root/debian/linux-headers-6.7.7-progress7.99-powerpc.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 18:32:34 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 18:32:40 +0000
commitfce574dc8521aad077d2b12ed255c57f1f0c2c21 (patch)
tree74de1ed170020f5ae13ea29b8fd9626a365cd028 /debian/linux-headers-6.7.7-progress7.99-powerpc.postinst
parentAdding workaround for generating debian files with dacite from stable. (diff)
downloadlinux-fce574dc8521aad077d2b12ed255c57f1f0c2c21.tar.xz
linux-fce574dc8521aad077d2b12ed255c57f1f0c2c21.zip
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-6.7.7-progress7.99-powerpc.postinst')
-rw-r--r--debian/linux-headers-6.7.7-progress7.99-powerpc.postinst18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-6.7.7-progress7.99-powerpc.postinst b/debian/linux-headers-6.7.7-progress7.99-powerpc.postinst
new file mode 100644
index 000000000..7e6d1b57d
--- /dev/null
+++ b/debian/linux-headers-6.7.7-progress7.99-powerpc.postinst
@@ -0,0 +1,18 @@
+#!/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.7.7-progress7.99-powerpc";
+
+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__