summaryrefslogtreecommitdiffstats
path: root/debian/linux-headers-6.1.0-19-powerpc-smp.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-08 16:58:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-08 16:59:34 +0000
commitb306a14ab81a53f568663c93f8d4cc22996f35fa (patch)
tree6f4798ef73b8b0828fdada2f35a0be1d7e5681f5 /debian/linux-headers-6.1.0-19-powerpc-smp.postinst
parentMerging upstream version 6.1.82. (diff)
downloadlinux-b306a14ab81a53f568663c93f8d4cc22996f35fa.tar.xz
linux-b306a14ab81a53f568663c93f8d4cc22996f35fa.zip
Merging debian version 6.1.82-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-6.1.0-19-powerpc-smp.postinst')
-rwxr-xr-xdebian/linux-headers-6.1.0-19-powerpc-smp.postinst18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-6.1.0-19-powerpc-smp.postinst b/debian/linux-headers-6.1.0-19-powerpc-smp.postinst
new file mode 100755
index 000000000..a4d5bf0cf
--- /dev/null
+++ b/debian/linux-headers-6.1.0-19-powerpc-smp.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.1.0-19-powerpc-smp";
+
+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__