Contents |
With Voyage linux running on these boards there appears to be an issue where the watchdog timers do not work and so produces the restart errors documented here
vi /etc/modules
add 'sc520_wdt' on a new line, this loads the watchdog driver.
The system will now reboot by killing the watchdog process. The old reboot script was saved
cp /sbin/reboot /sbin/reboot_old
The new reboot is script is as follows
#!/bin/bash FOO='cat /var/run/watchdog.pid' kill -9 $FOO remountro echo "System will reboot in 30 seconds"
This gets the process id of the watchdog timer and force kills it. It also remounts the file system as read only in an attempt to reduce problems.
Note: The Voyage operating system will change the bit rate to 19200Bps.