summaryrefslogtreecommitdiffstats
path: root/debian/linux-image-4.19.0-25-4kc-malta.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 04:17:46 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 04:17:58 +0000
commitbefd7d6833514b1396e87fdff689ce8be3ad4ab1 (patch)
tree279aa396beb362a9f4c449a1fb0ed5062c2444d3 /debian/linux-image-4.19.0-25-4kc-malta.postinst
parentMerging upstream version 4.19.289. (diff)
downloadlinux-befd7d6833514b1396e87fdff689ce8be3ad4ab1.tar.xz
linux-befd7d6833514b1396e87fdff689ce8be3ad4ab1.zip
Merging debian version 4.19.289-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-4.19.0-25-4kc-malta.postinst')
-rw-r--r--debian/linux-image-4.19.0-25-4kc-malta.postinst25
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/linux-image-4.19.0-25-4kc-malta.postinst b/debian/linux-image-4.19.0-25-4kc-malta.postinst
new file mode 100644
index 000000000..7be0babe2
--- /dev/null
+++ b/debian/linux-image-4.19.0-25-4kc-malta.postinst
@@ -0,0 +1,25 @@
+#!/bin/sh -e
+
+version=4.19.0-25-4kc-malta
+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