]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
fix(watchdog): change the priority of watchdog kernel modules
authorLaszlo Gombos <laszlo.gombos@gmail.com>
Sat, 20 Jul 2024 17:14:09 +0000 (13:14 -0400)
committerNeal Gompa (ニール・ゴンパ) <ngompa13@gmail.com>
Sat, 20 Jul 2024 20:25:40 +0000 (16:25 -0400)
i6300esb should be prioritized over ib700wdt.

Follow-up to f0a7fc5b4 .

modules.d/04watchdog/watchdog.sh

index 22919eeb483fda6d1b4dcd6db0ec46f8a166fbb9..e8623111555b31f49544566c022bdf44599d560b 100755 (executable)
@@ -7,6 +7,6 @@ if [ -e /dev/watchdog ]; then
     info "Triggering watchdog"
     : > /dev/watchdog
 else
-    modprobe ib700wdt
     modprobe i6300esb
+    modprobe ib700wdt
 fi