summaryrefslogtreecommitdiffstats
path: root/debian/linux-headers-4.19.0-23-loongson-3.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 03:43:38 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 03:43:38 +0000
commit1ff870768c5cacf4bdc05cce822ac61837666b0f (patch)
tree94a1b1fd6d42485c062620781ed0ac16e05bf60c /debian/linux-headers-4.19.0-23-loongson-3.postinst
parentMerging upstream version 4.19.269. (diff)
downloadlinux-1ff870768c5cacf4bdc05cce822ac61837666b0f.tar.xz
linux-1ff870768c5cacf4bdc05cce822ac61837666b0f.zip
Adding debian version 4.19.269-1.debian/4.19.269-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-4.19.0-23-loongson-3.postinst')
-rw-r--r--debian/linux-headers-4.19.0-23-loongson-3.postinst18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-4.19.0-23-loongson-3.postinst b/debian/linux-headers-4.19.0-23-loongson-3.postinst
new file mode 100644
index 000000000..705286c9a
--- /dev/null
+++ b/debian/linux-headers-4.19.0-23-loongson-3.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-23-loongson-3";
+
+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__