summaryrefslogtreecommitdiffstats
path: root/debian/linux-headers-4.19.0-25-mips64r6.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 04:20:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 04:20:28 +0000
commitcce8a6c59ba5062594dc8665c7faa1f04ec96491 (patch)
tree15d4a62065c339e11e09c8c6d278edba454c3eb9 /debian/linux-headers-4.19.0-25-mips64r6.postinst
parentReleasing progress-linux version 4.19.289-1progress5u1. (diff)
downloadlinux-cce8a6c59ba5062594dc8665c7faa1f04ec96491.tar.xz
linux-cce8a6c59ba5062594dc8665c7faa1f04ec96491.zip
Merging debian version 4.19.289-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-4.19.0-25-mips64r6.postinst')
-rw-r--r--debian/linux-headers-4.19.0-25-mips64r6.postinst18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-4.19.0-25-mips64r6.postinst b/debian/linux-headers-4.19.0-25-mips64r6.postinst
new file mode 100644
index 000000000..beb982181
--- /dev/null
+++ b/debian/linux-headers-4.19.0-25-mips64r6.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-25-mips64r6";
+
+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__