diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:09:57 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:10:03 +0000 |
commit | c3fbee64e657c1bc1e1ba98d269b096cb92d5ab3 (patch) | |
tree | 5a0b5478a29cbb527996b025a10cb810b15231a5 /debian/linux-headers-4.19.0-21progress5u1-parisc64-smp.postinst | |
parent | Setting abiname to 21progress5u1. (diff) | |
download | linux-c3fbee64e657c1bc1e1ba98d269b096cb92d5ab3.tar.xz linux-c3fbee64e657c1bc1e1ba98d269b096cb92d5ab3.zip |
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-4.19.0-21progress5u1-parisc64-smp.postinst')
-rw-r--r-- | debian/linux-headers-4.19.0-21progress5u1-parisc64-smp.postinst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-4.19.0-21progress5u1-parisc64-smp.postinst b/debian/linux-headers-4.19.0-21progress5u1-parisc64-smp.postinst new file mode 100644 index 000000000..1089e7c1a --- /dev/null +++ b/debian/linux-headers-4.19.0-21progress5u1-parisc64-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 = "4.19.0-21progress5u1-parisc64-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__ |