diff options
author | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-01 14:35:36 +0000 |
---|---|---|
committer | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-01 14:35:36 +0000 |
commit | 19dd812e30738975cdcae52e47bfefb741a93d8d (patch) | |
tree | 01eb0ccf485a6841881c9eebf29f636382facdc6 /target/linux/ifxmips/base-files/lib/upgrade | |
parent | edd6adae2e68d79c8df7be3dd886f18893f27dc3 (diff) |
[ifxmips]
* drop codebase in favour of lantiq target
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25277 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ifxmips/base-files/lib/upgrade')
-rwxr-xr-x | target/linux/ifxmips/base-files/lib/upgrade/platform.sh | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/target/linux/ifxmips/base-files/lib/upgrade/platform.sh b/target/linux/ifxmips/base-files/lib/upgrade/platform.sh deleted file mode 100755 index 247ba1a25..000000000 --- a/target/linux/ifxmips/base-files/lib/upgrade/platform.sh +++ /dev/null @@ -1,25 +0,0 @@ -PART_NAME=linux - -platform_check_image() { - [ "$ARGC" -gt 1 ] && return 1 - - case "$(get_magic_word "$1")" in - # .trx files - 2705) return 0;; - *) - echo "Invalid image type" - return 1 - ;; - esac -} - -# use default for platform_do_upgrade() - -disable_watchdog() { - killall watchdog - ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && { - echo 'Could not disable watchdog' - return 1 - } -} -append sysupgrade_pre_upgrade disable_watchdog |