summaryrefslogtreecommitdiffstats
path: root/debian/linux-image-6.7.12-powerpc.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 18:47:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 18:47:59 +0000
commit8c87665b42c616a0d83837405ed44e90d1cacaee (patch)
tree7aa741e9343d0b73b2f72ea1b78ef8785653288b /debian/linux-image-6.7.12-powerpc.postinst
parentMerging upstream version 6.7.12. (diff)
downloadlinux-8c87665b42c616a0d83837405ed44e90d1cacaee.tar.xz
linux-8c87665b42c616a0d83837405ed44e90d1cacaee.zip
Adding debian version 6.7.12-1.debian/6.7.12-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-6.7.12-powerpc.postinst')
-rw-r--r--debian/linux-image-6.7.12-powerpc.postinst25
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/linux-image-6.7.12-powerpc.postinst b/debian/linux-image-6.7.12-powerpc.postinst
new file mode 100644
index 000000000..8d0db7ae3
--- /dev/null
+++ b/debian/linux-image-6.7.12-powerpc.postinst
@@ -0,0 +1,25 @@
+#!/bin/sh -e
+
+version=6.7.12-powerpc
+image_path=/boot/vmlinux-$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