diff options
author | Thomas Langer <thomas.langer@lantiq.com> | 2008-11-20 18:31:00 +0000 |
---|---|---|
committer | Thomas Langer <thomas.langer@lantiq.com> | 2008-11-20 18:31:00 +0000 |
commit | 1bc6841c8dff78e1b8bafb53dbea352b56a56d65 (patch) | |
tree | cb679195b46e22f043b2b7a51d4f3187bacfee12 /target/linux/ifxmips/base-files/lib/upgrade/platform.sh | |
parent | 88dd88931466259ca3b785de42f8088274348081 (diff) | |
download | mtk-20170518-1bc6841c8dff78e1b8bafb53dbea352b56a56d65.zip mtk-20170518-1bc6841c8dff78e1b8bafb53dbea352b56a56d65.tar.gz mtk-20170518-1bc6841c8dff78e1b8bafb53dbea352b56a56d65.tar.bz2 |
some cleanups: - fix CPUID detection - update MTD map for checks and sysupgrade - enable subtargets (Generic&NFS) for simpler development - generic cleanups (e.g. from linux checkpatch.pl)
SVN-Revision: 13295
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, 25 insertions, 0 deletions
diff --git a/target/linux/ifxmips/base-files/lib/upgrade/platform.sh b/target/linux/ifxmips/base-files/lib/upgrade/platform.sh new file mode 100755 index 0000000..247ba1a --- /dev/null +++ b/target/linux/ifxmips/base-files/lib/upgrade/platform.sh @@ -0,0 +1,25 @@ +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 |