add sysupgrade support for the Netgear WNR854T and Linksys WRT350N v2 - thanks Matthias Buecher

SVN-Revision: 19166
This commit is contained in:
Jo-Philipp Wich
2010-01-16 13:36:27 +00:00
parent f623119680
commit e44b91f718
3 changed files with 55 additions and 12 deletions

View File

@@ -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
}