summaryrefslogtreecommitdiffstats
path: root/debian/linux-image-6.7.7-armmp.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 17:40:22 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 17:44:43 +0000
commitb5b67adcc17e3e74dbcda09ff3f8a4636aa53486 (patch)
tree601c346183757b42c53b1d0aa8773cb00d1bd73c /debian/linux-image-6.7.7-armmp.postinst
parentMerging upstream version 6.7.7. (diff)
downloadlinux-b5b67adcc17e3e74dbcda09ff3f8a4636aa53486.tar.xz
linux-b5b67adcc17e3e74dbcda09ff3f8a4636aa53486.zip
Merging debian version 6.7.7-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-6.7.7-armmp.postinst')
-rw-r--r--debian/linux-image-6.7.7-armmp.postinst25
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/linux-image-6.7.7-armmp.postinst b/debian/linux-image-6.7.7-armmp.postinst
new file mode 100644
index 000000000..a09eb44d7
--- /dev/null
+++ b/debian/linux-image-6.7.7-armmp.postinst
@@ -0,0 +1,25 @@
+#!/bin/sh -e
+
+version=6.7.7-armmp
+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