I was following the instructions at https://archlinuxarm.org/wiki/Raspberry_Pi for using the watchdog. However, I don't get how to "enable bcm2708_wdog" as mentioned on that page. Here is what I tried:
$this->bbcode_second_pass_code('', '
[root@piameter ~]# modprobe -c | grep bcm2708
blacklist i2c_bcm2708'
options bcm2708_fb fbwidth=656
options bcm2708_fb fbheight=416
options bcm2708_fb fbswap=1
alias of:N*T*Cbrcm,bcm2708_i2c i2c_bcm2708
alias of:N*T*Cbrcm,bcm2708_i2cC* i2c_bcm2708
alias platform:bcm2708_i2c i2c_bcm2708
[root@piameter ~]# ls /usr/lib/modules/4.14.98-1-ARCH/kernel/*/
[root@piameter ~]# ls /usr/lib/modules/4.14.98-1-ARCH/kernel/drivers/watchdog/
gpio_wdt.ko.gz
[root@piameter ~]# modprobe -c | grep dog
alias symbol:ar9003_hw_bb_watchdog_check ath9k_hw
alias symbol:ar9003_hw_bb_watchdog_dbg_info ath9k_hw
alias symbol:rt2x00usb_watchdog rt2x00usb
alias symbol:rtl92c_dm_watchdog rtl8192c_common
[root@piameter ~]# for i in ath9k_hw ath9k_hw rt2x00usb rtl8192c_common; do modinfo $i; done
<results did not show what I guess is the watchdog being referred to in the instructions. I'm not sure how to use the gpio_wdt.ko.gz file if it is the right one.
Perhaps this doesn't exist for ARMv6 or ARMv7? Or, where should I get it?
Thanks!
')