diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-01-16 13:36:27 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-01-16 13:36:27 +0000 |
commit | 5af2db9ce50de49804ec4f47bee966e8eb9525f7 (patch) | |
tree | 4ae00fddd38b0f916d6cd5916379aba4f25abb46 /target/linux/orion/base-files | |
parent | c0c8556ba8c3453b872509e0e214eab3a24c9440 (diff) | |
download | upstream-5af2db9ce50de49804ec4f47bee966e8eb9525f7.tar.gz upstream-5af2db9ce50de49804ec4f47bee966e8eb9525f7.tar.bz2 upstream-5af2db9ce50de49804ec4f47bee966e8eb9525f7.zip |
[orion] add sysupgrade support for the Netgear WNR854T and Linksys WRT350N v2 - thanks Matthias Buecher
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19166 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/orion/base-files')
-rw-r--r-- | target/linux/orion/base-files/lib/upgrade/platform.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/target/linux/orion/base-files/lib/upgrade/platform.sh b/target/linux/orion/base-files/lib/upgrade/platform.sh new file mode 100644 index 0000000000..def241d4b5 --- /dev/null +++ b/target/linux/orion/base-files/lib/upgrade/platform.sh @@ -0,0 +1,23 @@ +# use default "image" for PART_NAME +# use default for platform_do_upgrade() + +platform_check_image() { + [ "${ARGC}" -gt 1 ] && { echo 'Too many arguments. Only flash file expected.'; return 1; } + + local hardware=`sed -n /Hardware/s/.*:.//p /proc/cpuinfo` + local magic="$(get_magic_word "$1")" + + case "${hardware}" in + # hardware with padded uImage + padded rootfs + 'Netgear WNR854T' | 'Linksys WRT350N v2') + [ "${magic}" != '2705' ] && { + echo "Invalid image type ${magic}." + return 1 + } + return 0 + ;; + esac + + echo "Sysupgrade is not yet supported on ${hardware}." + return 1 +} |