diff --git a/board/common/overlay/etc/init.d/S10watchdog b/board/common/overlay/etc/init.d/S10watchdog index 8018a92651..2ef0f11278 100755 --- a/board/common/overlay/etc/init.d/S10watchdog +++ b/board/common/overlay/etc/init.d/S10watchdog @@ -10,15 +10,19 @@ case "$1" in watchdog -t 5 /dev/watchdog test $? == 0 && msg_done || msg_fail ;; - + stop) + true + ;; + + reallystop) msg_begin "Stopping watchdog" killall watchdog &>/dev/null test $? == 0 && msg_done || msg_fail ;; *) - echo $"Usage: $0 {start|stop}" + echo $"Usage: $0 {start|reallystop}" exit 1 esac