From 3362d9fb3a94d0909b79c290abc8db6abe4cca21 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Fri, 14 Sep 2018 22:25:09 +0200 Subject: target/linux : drop many arch --- .../cns21xx/base-files/lib/upgrade/platform.sh | 45 ---------------------- 1 file changed, 45 deletions(-) delete mode 100755 target/linux/cns21xx/base-files/lib/upgrade/platform.sh (limited to 'target/linux/cns21xx/base-files/lib/upgrade') diff --git a/target/linux/cns21xx/base-files/lib/upgrade/platform.sh b/target/linux/cns21xx/base-files/lib/upgrade/platform.sh deleted file mode 100755 index fd9bd28..0000000 --- a/target/linux/cns21xx/base-files/lib/upgrade/platform.sh +++ /dev/null @@ -1,45 +0,0 @@ -# -# Copyright (C) 2010 OpenWrt.org -# - -. /lib/cns21xx.sh - -PART_NAME=firmware -RAMFS_COPY_DATA=/lib/cns21xx.sh - -platform_check_image() { - local board=$(get_board_name) - local magic="$(get_magic_word "$1")" - - [ "$#" -gt 1 ] && return 1 - - case "$board" in - nsb3ast) - [ "$magic" != "0b1c" ] && { - echo "Invalid image type." - return 1 - } - return 0 - ;; - ns-k330) - [ "$magic" != "0c1c" ] && { - echo "Invalid image type." - return 1 - } - return 0 - ;; - esac - - echo "Sysupgrade is not yet supported on $board." - return 1 -} - -disable_watchdog() { - killall watchdog - ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && { - echo 'Could not disable watchdog' - return 1 - } -} - -append sysupgrade_pre_upgrade disable_watchdog -- cgit v1.1