summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-11-01 09:23:32 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-11-01 09:23:32 +0000
commit11cfb889eb69a284196d82cc9bbf1467560e9cde (patch)
treeebde017132bca710a7d3755c814811d73b388d2c /target/linux/ar71xx/base-files/lib/upgrade/platform.sh
parent52378540af15834fd34c2c95893f6d13cada0f51 (diff)
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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28700 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/lib/upgrade/platform.sh')
-rwxr-xr-xtarget/linux/ar71xx/base-files/lib/upgrade/platform.sh7
1 files changed, 7 insertions, 0 deletions
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"
;;