From 7e88cd65aaffd32d5a0ea7655f67098fc2ee61cc Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Fri, 4 Apr 2025 21:35:01 -0600 Subject: [PATCH] add a postinst to force running our kernel postinst hook on package update --- debian/quantimotor.postinst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 debian/quantimotor.postinst 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 -- 2.47.2