ramips: add user-space support for ALL0256N
[librecmc/librecmc.git] / target / linux / ramips / base-files / lib / upgrade / platform.sh
index bf8a9865bed9fc7864dc3f839ce32861d567406c..30754b5c2fee02d2148035c132dafd0b6ca4b32d 100755 (executable)
@@ -14,7 +14,25 @@ platform_check_image() {
        [ "$ARGC" -gt 1 ] && return 1
 
        case "$board" in
-       dir-300-b1 | fonera20n | v22rw-2x2 | whr-g300n | hw550-3g)
+       all0256n | \
+       bc2 | \
+       dir-300-b1 | \
+       dir-600-b1 | \
+       dir-600-b2 | \
+       esr-9753 | \
+       fonera20n | \
+       hw550-3g | \
+       mofi3500-3gn | \
+       nbg-419n | \
+       nw718 | \
+       omni-emb | \
+       rt-g32-b1 | \
+       rt-n15 | \
+       w502u |\
+       v22rw-2x2 | \
+       wli-tx4-ag300n | \
+       whr-g300n |\
+       wr512-3gn)
                [ "$magic" != "2705" ] && {
                        echo "Invalid image type."
                        return 1
@@ -36,3 +54,13 @@ platform_do_upgrade() {
                ;;
        esac
 }
+
+disable_watchdog() {
+       killall watchdog
+       ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
+               echo 'Could not disable watchdog'
+               return 1
+       }
+}
+
+append sysupgrade_pre_upgrade disable_watchdog