diff options
author | John Crispin <john@openwrt.org> | 2011-02-01 14:35:36 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-02-01 14:35:36 +0000 |
commit | e919bd002a7f08d1c893dc3272f1f6332442fc35 (patch) | |
tree | bf2e28836e52b2a82972c338cc244dd12a034fef /target/linux/ifxmips/base-files/lib/upgrade/platform.sh | |
parent | 61527e0b529fa012fc181f64bf3d3a5c48a9cb33 (diff) | |
download | mtk-20170518-e919bd002a7f08d1c893dc3272f1f6332442fc35.zip mtk-20170518-e919bd002a7f08d1c893dc3272f1f6332442fc35.tar.gz mtk-20170518-e919bd002a7f08d1c893dc3272f1f6332442fc35.tar.bz2 |
* drop codebase in favour of lantiq target
SVN-Revision: 25277
Diffstat (limited to 'target/linux/ifxmips/base-files/lib/upgrade/platform.sh')
-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 247ba1a..0000000 --- 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 |