Enabling watchdog.

Hi, I'm thinking of enabling the watchdog on our Dell PowerEdge 2950 / FreeBSD 8.0 amd64, so that it reboots the machine in case of lockups.
Right now it doesn't work:
Code:
# watchdog
watchdog: patting the dog: Operation not supported
#
Looking through the kernel configuration I found two relevant settings:
In /sys/conf/NOTES:
Code:
#
# Add software watchdog routines.
#
options         SW_WATCHDOG
and in /sys/amd64/conf/NOTES:
Code:
#
# Watchdog routines.
#
options         MP_WATCHDOG

Which of them should I rebuild the kernel with? BTW, the current kernel is built with the default "options SCHED_ULE" to make good use of multiple CPUs, does watchdog work with it?

Thanks.
 
Last edited by a moderator:
You could use one of this depending on the hardware (or load with kldload).

Code:
device ichwd       # intel ICH watchdog timer
device amdsbwd # AMD SB7xx watchdog timer
device viawd       # VIA south bridge watchdog timer
device wbwd       # Winbond watchdog timer
 
monwarez keep in mind you are responding to a 7 year old post. FreeBSD 8.0 has been End-of-Life for quite some time now.
 
Back
Top