ar71xx/all0258n: sysupgrade support

U-Boot on the ALL0258N needs offset, size and md5 for kernel and rootfs to be
stored in the U-Boot environment.
If the checksums don't match during boot, a failsafe-system is booted instead.
This patch adds a board-specific sysupgrade hack for the all0258n which
calculates and updates the checksums for the U-Boot environment.

Signed-off-by: Daniel Golle <dgolle@allnet.de>

SVN-Revision: 28700
This commit is contained in:
Gabor Juhos
2011-11-01 09:23:32 +00:00
parent f40557a692
commit 3a7b12a27d
2 changed files with 168 additions and 0 deletions

View File

@@ -69,6 +69,10 @@ platform_check_image() {
[ "$ARGC" -gt 1 ] && return 1
case "$board" in
all0258n )
platform_check_image_all0258n "$1" && return 0
return 1
;;
ap121 | ap121-mini | ap96 | db120 | zcn-1523h-2 | zcn-1523h-5)
[ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
echo "Invalid image type."
@@ -141,6 +145,9 @@ platform_do_upgrade() {
routerstation | routerstation-pro | ls-sr71 | eap7660d | ja76pf )
platform_do_upgrade_combined "$ARGV"
;;
all0258n )
platform_do_upgrade_all0258n "$ARGV"
;;
*)
default_do_upgrade "$ARGV"
;;