treewide: remove obsolete sysupgrade watchdog kill
[openwrt/staging/wigyori.git] / target / linux / au1000 / base-files / lib / upgrade / platform.sh
index 1a9d151c8a282bd6fde26ffda4a218c5c975ace5..7beb4a0d0600b04ea682a3a235ef117685add7f8 100644 (file)
@@ -24,13 +24,3 @@ platform_do_upgrade() {
        get_image "$1" | tar -Oxvf - $KERNEL_IMG | mtd write - "kernel"
        get_image "$1" | tar -Oxvf - $ROOTFS_IMG | mtd $conf write - "rootfs"
 }
-
-disable_watchdog() {
-        killall watchdog
-        ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
-                echo 'Could not disable watchdog'
-                return 1
-        }
-}
-
-append sysupgrade_pre_upgrade disable_watchdog