diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 04:22:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 04:22:38 +0000 |
commit | 1c3353163a91f86216f3cf3535bb7238c607d76f (patch) | |
tree | f12d9d70b4a2098ab6b35ed28725e327f19e4ab1 /debian/linux-headers-4.19.0-26progress5u1-loongson-3.postinst | |
parent | Setting abiname to 26progress5u1. (diff) | |
download | linux-1c3353163a91f86216f3cf3535bb7238c607d76f.tar.xz linux-1c3353163a91f86216f3cf3535bb7238c607d76f.zip |
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/linux-headers-4.19.0-26progress5u1-loongson-3.postinst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/linux-headers-4.19.0-26progress5u1-loongson-3.postinst b/debian/linux-headers-4.19.0-26progress5u1-loongson-3.postinst new file mode 100644 index 000000000..8d9d277d7 --- /dev/null +++ b/debian/linux-headers-4.19.0-26progress5u1-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-26progress5u1-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__ |