diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-28 10:44:31 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-28 10:44:31 +0000 |
commit | d771094a7f7737907ecaeb7f866fdfe0522eb3d0 (patch) | |
tree | 87922252ab0e7a9a40ea9c954c5c212ed7744a3d /target/linux/cns21xx/base-files/lib/upgrade | |
parent | 372e3567672b457a0b20820c0b15b19f3d1a9784 (diff) | |
download | master-187ad058-d771094a7f7737907ecaeb7f866fdfe0522eb3d0.tar.gz master-187ad058-d771094a7f7737907ecaeb7f866fdfe0522eb3d0.tar.bz2 master-187ad058-d771094a7f7737907ecaeb7f866fdfe0522eb3d0.zip |
cns21xx: moved to targets feed
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45078 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/cns21xx/base-files/lib/upgrade')
-rwxr-xr-x | target/linux/cns21xx/base-files/lib/upgrade/platform.sh | 45 |
1 files changed, 0 insertions, 45 deletions
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 fd9bd28996..0000000000 --- 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 |