]> git.gag.com Git - fw/quantimotor/commitdiff
add a postinst to force running our kernel postinst hook on package update
authorBdale Garbee <bdale@gag.com>
Sat, 5 Apr 2025 03:35:01 +0000 (21:35 -0600)
committerBdale Garbee <bdale@gag.com>
Sat, 5 Apr 2025 03:35:01 +0000 (21:35 -0600)
debian/quantimotor.postinst [new file with mode: 0644]

diff --git a/debian/quantimotor.postinst b/debian/quantimotor.postinst
new file mode 100644 (file)
index 0000000..bd40a6e
--- /dev/null
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+configure)
+       # trigger the kernel postinst hook to ensure our dtb is in place
+       DEB_MAINT_PARAMS="configure" /etc/kernel/postinst.d/z99-quantimotor
+       ;;
+esac
+
+#DEBHELPER#
+
+exit 0