summaryrefslogtreecommitdiffstats
path: root/debian/linux-image-6.7.7-loong64.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 18:43:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 18:43:42 +0000
commit32e469e87f26539b2fc0267fbb68828ccbb941af (patch)
tree1be314b8d34a97ce091df668159f497183ad9ef6 /debian/linux-image-6.7.7-loong64.postinst
parentMerging upstream version 6.7.9. (diff)
downloadlinux-32e469e87f26539b2fc0267fbb68828ccbb941af.tar.xz
linux-32e469e87f26539b2fc0267fbb68828ccbb941af.zip
Adding debian version 6.7.9-1.debian/6.7.9-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-6.7.7-loong64.postinst')
-rw-r--r--debian/linux-image-6.7.7-loong64.postinst25
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/linux-image-6.7.7-loong64.postinst b/debian/linux-image-6.7.7-loong64.postinst
deleted file mode 100644
index 637b494e1..000000000
--- a/debian/linux-image-6.7.7-loong64.postinst
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh -e
-
-version=6.7.7-loong64
-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