summaryrefslogtreecommitdiffstats
path: root/debian/linux-headers-4.19.0-26progress5u1-powerpc.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 04:22:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 04:22:38 +0000
commit1c3353163a91f86216f3cf3535bb7238c607d76f (patch)
treef12d9d70b4a2098ab6b35ed28725e327f19e4ab1 /debian/linux-headers-4.19.0-26progress5u1-powerpc.postinst
parentSetting abiname to 26progress5u1. (diff)
downloadlinux-1c3353163a91f86216f3cf3535bb7238c607d76f.tar.xz
linux-1c3353163a91f86216f3cf3535bb7238c607d76f.zip
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-4.19.0-26progress5u1-powerpc.postinst')
-rw-r--r--debian/linux-headers-4.19.0-26progress5u1-powerpc.postinst18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-4.19.0-26progress5u1-powerpc.postinst b/debian/linux-headers-4.19.0-26progress5u1-powerpc.postinst
new file mode 100644
index 000000000..62d0aa65f
--- /dev/null
+++ b/debian/linux-headers-4.19.0-26progress5u1-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 = "4.19.0-26progress5u1-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__