From: Bdale Garbee Date: Fri, 25 Jul 2025 19:01:50 +0000 (-0600) Subject: also call the raspi-firmware kernel postinst hook in postinst for gpio content X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=af52ea66e8d3196e88ce8830c5fc31efb8117873;p=fw%2Fquantimotor also call the raspi-firmware kernel postinst hook in postinst for gpio content --- diff --git a/debian/quantimotor.postinst b/debian/quantimotor.postinst index 987afa0..f9e566d 100644 --- a/debian/quantimotor.postinst +++ b/debian/quantimotor.postinst @@ -4,7 +4,10 @@ set -e case "$1" in configure) - # trigger the kernel postinst hook to ensure our dtb is in place + # trigger raspi-firmware postinst hook so our gpio config is included + DEB_MAINT_PARAMS="configure" /etc/kernel/postinst.d/z50-raspi-firmware + + # trigger kernel postinst hook to ensure our dtb is in place DEB_MAINT_PARAMS="configure" /etc/kernel/postinst.d/z99-quantimotor ;; esac