From 91a439b805f93f3ddcc522677629bd0cf588d54f Mon Sep 17 00:00:00 2001 From: Alper Nebi Yasak Date: Fri, 30 Aug 2024 14:46:41 +0300 Subject: [PATCH] hook-functions: Add watchdog drivers Add watchdog driver modules for MODULES=most, based on dracut's 90kernel-modules script. These were added in dracut commit 3a60c036db7c ("fix(90kernel-modules): add watchdog drivers for generic initrd"), stating that we might not be able ping a hardware watchdog fast enough if we wait until we mount the root filesystem. Link: https://github.com/dracutdevs/dracut/commit/3a60c036db7caccda95475d33c8d4ce1f615d2c8 Signed-off-by: Alper Nebi Yasak --- hook-functions | 1 + 1 file changed, 1 insertion(+) diff --git a/hook-functions b/hook-functions index a141ffa..d6e758e 100644 --- a/hook-functions +++ b/hook-functions @@ -752,6 +752,7 @@ auto_add_modules() modules="$modules =drivers/spi" modules="$modules =drivers/spmi" modules="$modules =drivers/usb/phy" + modules="$modules =drivers/watchdog" # Needed for periodic fsck modules="$modules =drivers/rtc"