From af52ea66e8d3196e88ce8830c5fc31efb8117873 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Fri, 25 Jul 2025 13:01:50 -0600 Subject: [PATCH] also call the raspi-firmware kernel postinst hook in postinst for gpio content --- debian/quantimotor.postinst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.47.2