From be825b629a870fcd55cc393c8346e09b2ed89b4a Mon Sep 17 00:00:00 2001 From: Anurag Pateriya Date: Wed, 2 Sep 2026 18:00:21 +0530 Subject: [PATCH] debian: rules.d: 2-binary-arch: Remove qcom-wdt from blacklist Canonical has blacklisted all watchdog modules via (blacklist all watchdog drivers (LP:1432837)). qcom-wdt is required for debugging stability issues around lockup, device hangs and ramdump collection in kernel panic path. Signed-off-by: Anurag Pateriya --- debian/rules.d/2-binary-arch.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/rules.d/2-binary-arch.mk b/debian/rules.d/2-binary-arch.mk index ae9529af1c395..71103f922b37a 100644 --- a/debian/rules.d/2-binary-arch.mk +++ b/debian/rules.d/2-binary-arch.mk @@ -224,6 +224,7 @@ endif >>$(pkgdir)/usr/lib/modprobe.d/blacklist_$(DEB_SOURCE)_$(abi_release)-$*.conf ls -1 $(pkgdir)/usr/lib/modules/$(abi_release)-$*/kernel/drivers/watchdog/ | \ grep -v '^bcm2835_wdt.ko$$' | \ + grep -v '^qcom-wdt' | \ grep -v '^sbsa_gwdt.ko$$' | \ sed -e 's/^/blacklist /' -e 's/.ko$$//' | \ sort -u \