summaryrefslogtreecommitdiffstats
path: root/debian/linux-headers-6.7.7-armmp.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 18:32:34 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 18:32:40 +0000
commitfce574dc8521aad077d2b12ed255c57f1f0c2c21 (patch)
tree74de1ed170020f5ae13ea29b8fd9626a365cd028 /debian/linux-headers-6.7.7-armmp.postinst
parentAdding workaround for generating debian files with dacite from stable. (diff)
downloadlinux-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-armmp.postinst')
-rw-r--r--debian/linux-headers-6.7.7-armmp.postinst18
1 files changed, 0 insertions, 18 deletions
diff --git a/debian/linux-headers-6.7.7-armmp.postinst b/debian/linux-headers-6.7.7-armmp.postinst
deleted file mode 100644
index e360740bd..000000000
--- a/debian/linux-headers-6.7.7-armmp.postinst
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/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-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__