From 11cfb889eb69a284196d82cc9bbf1467560e9cde Mon Sep 17 00:00:00 2001 From: juhosg Date: Tue, 1 Nov 2011 09:23:32 +0000 Subject: 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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28700 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/ar71xx/base-files/lib/upgrade/platform.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'target/linux/ar71xx/base-files/lib/upgrade/platform.sh') diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh index f20264f78..311b8975e 100755 --- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh @@ -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" ;; -- cgit v1.2.3