summaryrefslogtreecommitdiffstats
path: root/debian/linux-image-6.9-rt-686-pae.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 21:00:47 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 21:00:47 +0000
commit8c065e72d7829ba7efeb3c93d98c602f7ba3d158 (patch)
tree6a0028be8b6ccf05cb17febc6abafbfbdd0569ec /debian/linux-image-6.9-rt-686-pae.postinst
parentMerging upstream version 6.9.2. (diff)
downloadlinux-8c065e72d7829ba7efeb3c93d98c602f7ba3d158.tar.xz
linux-8c065e72d7829ba7efeb3c93d98c602f7ba3d158.zip
Adding debian version 6.9.2-1~exp1.debian/6.9.2-1_exp1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-6.9-rt-686-pae.postinst')
-rw-r--r--debian/linux-image-6.9-rt-686-pae.postinst25
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/linux-image-6.9-rt-686-pae.postinst b/debian/linux-image-6.9-rt-686-pae.postinst
new file mode 100644
index 000000000..2cabd0942
--- /dev/null
+++ b/debian/linux-image-6.9-rt-686-pae.postinst
@@ -0,0 +1,25 @@
+#!/bin/sh -e
+
+version=6.9-rt-686-pae
+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