diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 03:45:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 03:45:19 +0000 |
commit | fc29d8e7adf8ca263f0f58d0b28ddaf9721577a7 (patch) | |
tree | 658d53d9edd1baa7c4c0a6cdd1611d8bd9f4a607 /debian/linux-headers-4.19.0-23progress5u1-rt-armmp.postinst | |
parent | Setting abiname to 23progress5u1. (diff) | |
download | linux-fc29d8e7adf8ca263f0f58d0b28ddaf9721577a7.tar.xz linux-fc29d8e7adf8ca263f0f58d0b28ddaf9721577a7.zip |
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-4.19.0-23progress5u1-rt-armmp.postinst')
-rw-r--r-- | debian/linux-headers-4.19.0-23progress5u1-rt-armmp.postinst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-4.19.0-23progress5u1-rt-armmp.postinst b/debian/linux-headers-4.19.0-23progress5u1-rt-armmp.postinst new file mode 100644 index 000000000..8182f1a1b --- /dev/null +++ b/debian/linux-headers-4.19.0-23progress5u1-rt-armmp.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-23progress5u1-rt-armmp"; + +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__ |