aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ifxmips/base-files
diff options
context:
space:
mode:
authorThomas Langer <thomas.langer@lantiq.com>2008-11-20 18:31:00 +0000
committerThomas Langer <thomas.langer@lantiq.com>2008-11-20 18:31:00 +0000
commit1bc6841c8dff78e1b8bafb53dbea352b56a56d65 (patch)
treecb679195b46e22f043b2b7a51d4f3187bacfee12 /target/linux/ifxmips/base-files
parent88dd88931466259ca3b785de42f8088274348081 (diff)
downloadupstream-1bc6841c8dff78e1b8bafb53dbea352b56a56d65.tar.gz
upstream-1bc6841c8dff78e1b8bafb53dbea352b56a56d65.tar.bz2
upstream-1bc6841c8dff78e1b8bafb53dbea352b56a56d65.zip
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')
-rwxr-xr-xtarget/linux/ifxmips/base-files/lib/upgrade/platform.sh25
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 0000000000..247ba1a25c
--- /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