summaryrefslogtreecommitdiffstats
path: root/debian/linux-image-5.10.0-29progress6u1-5kc-malta.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-03 19:25:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-03 19:25:53 +0000
commit29cf2cc773d32e768ef3cfc6f2d3fd87cecad375 (patch)
treea99987981ec220e043bd299ace2909988f69751f /debian/linux-image-5.10.0-29progress6u1-5kc-malta.postinst
parentMerging upstream version 5.10.218. (diff)
downloadlinux-29cf2cc773d32e768ef3cfc6f2d3fd87cecad375.tar.xz
linux-29cf2cc773d32e768ef3cfc6f2d3fd87cecad375.zip
Merging debian version 5.10.218-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-5.10.0-29progress6u1-5kc-malta.postinst')
-rwxr-xr-xdebian/linux-image-5.10.0-29progress6u1-5kc-malta.postinst25
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/linux-image-5.10.0-29progress6u1-5kc-malta.postinst b/debian/linux-image-5.10.0-29progress6u1-5kc-malta.postinst
deleted file mode 100755
index f2f91ad2d..000000000
--- a/debian/linux-image-5.10.0-29progress6u1-5kc-malta.postinst
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh -e
-
-version=5.10.0-29progress6u1-5kc-malta
-image_path=/boot/vmlinuz-$version
-
-if [ "$1" != configure ]; then
- exit 0
-fi
-
-depmod $version
-
-if [ -f /lib/modules/$version/.fresh-install ]; then
- change=install
-else
- change=upgrade
-fi
-linux-update-symlinks $change $version $image_path
-rm -f /lib/modules/$version/.fresh-install
-
-if [ -d /etc/kernel/postinst.d ]; then
- DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \
- --arg=$image_path /etc/kernel/postinst.d
-fi
-
-exit 0