diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 18:32:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 18:32:40 +0000 |
commit | fce574dc8521aad077d2b12ed255c57f1f0c2c21 (patch) | |
tree | 74de1ed170020f5ae13ea29b8fd9626a365cd028 /debian/linux-headers-6.7.7-progress7.99-arm64.postinst | |
parent | Adding workaround for generating debian files with dacite from stable. (diff) | |
download | linux-fce574dc8521aad077d2b12ed255c57f1f0c2c21.tar.xz linux-fce574dc8521aad077d2b12ed255c57f1f0c2c21.zip |
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-headers-6.7.7-progress7.99-arm64.postinst')
-rw-r--r-- | debian/linux-headers-6.7.7-progress7.99-arm64.postinst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-6.7.7-progress7.99-arm64.postinst b/debian/linux-headers-6.7.7-progress7.99-arm64.postinst new file mode 100644 index 0000000000..59f3df51c2 --- /dev/null +++ b/debian/linux-headers-6.7.7-progress7.99-arm64.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.7.7-progress7.99-arm64"; + +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__ |