summaryrefslogtreecommitdiffstats
path: root/debian/linux-headers-6.1.0-20progress6.99u1-octeon.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-20progress6.99u1-octeon.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-20progress6.99u1-octeon.postinst18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-6.1.0-20progress6.99u1-octeon.postinst b/debian/linux-headers-6.1.0-20progress6.99u1-octeon.postinst
new file mode 100755
index 000000000..8c4eb37e9
--- /dev/null
+++ b/debian/linux-headers-6.1.0-20progress6.99u1-octeon.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-20progress6.99u1-octeon";
+
+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__