From: Bdale Garbee Date: Sat, 5 Apr 2025 03:35:01 +0000 (-0600) Subject: add a postinst to force running our kernel postinst hook on package update X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=7e88cd65aaffd32d5a0ea7655f67098fc2ee61cc;p=fw%2Fquantimotor add a postinst to force running our kernel postinst hook on package update --- diff --git a/debian/quantimotor.postinst b/debian/quantimotor.postinst new file mode 100644 index 0000000..bd40a6e --- /dev/null +++ b/debian/quantimotor.postinst @@ -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