summaryrefslogtreecommitdiffstats
path: root/debian/generated.signed-arm64/linux-image-6.9-cloud-arm64.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/generated.signed-arm64/linux-image-6.9-cloud-arm64.postinst
parentMerging upstream version 6.9.2. (diff)
downloadlinux-8c065e72d7829ba7efeb3c93d98c602f7ba3d158.tar.xz
linux-8c065e72d7829ba7efeb3c93d98c602f7ba3d158.zip
Adding debian version 6.9.2-1~exp1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/generated.signed-arm64/linux-image-6.9-cloud-arm64.postinst')
-rw-r--r--debian/generated.signed-arm64/linux-image-6.9-cloud-arm64.postinst25
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/generated.signed-arm64/linux-image-6.9-cloud-arm64.postinst b/debian/generated.signed-arm64/linux-image-6.9-cloud-arm64.postinst
new file mode 100644
index 0000000000..4603937e8f
--- /dev/null
+++ b/debian/generated.signed-arm64/linux-image-6.9-cloud-arm64.postinst
@@ -0,0 +1,25 @@
+#!/bin/sh -e
+
+version=6.9-cloud-arm64
+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