From a04b71d330589c562a70faa7bf1afc29b58da362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= Date: Sun, 12 Apr 2015 10:42:27 +0000 Subject: bcm53xx: rework vendor fw handling to don't duplicate upgrade calls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafał Miłecki SVN-Revision: 45389 --- .../bcm53xx/base-files/lib/upgrade/platform.sh | 44 ++++++++-------------- 1 file changed, 15 insertions(+), 29 deletions(-) diff --git a/target/linux/bcm53xx/base-files/lib/upgrade/platform.sh b/target/linux/bcm53xx/base-files/lib/upgrade/platform.sh index ed84386a68..c3f9a14c78 100644 --- a/target/linux/bcm53xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/bcm53xx/base-files/lib/upgrade/platform.sh @@ -114,44 +114,30 @@ platform_check_image() { return $error } -# Extract TRX and use stadard upgrade method -platform_do_upgrade_chk() { +platform_extract_trx_from_chk() { local header_len=$((0x$(get_magic_long_at "$1" 4))) - local trx="/tmp/$1.trx" - dd if="$1" of="$trx" bs=$header_len skip=1 - shift - platform_do_upgrade_trx "$trx" "$@" + dd if="$1" of="$2" bs=$header_len skip=1 } -# Extract TRX and use stadard upgrade method -platform_do_upgrade_cybertan() { - local trx="/tmp/$1.trx" - - dd if="$1" of="$trx" bs=32 skip=1 - shift - platform_do_upgrade_trx "$trx" "$@" -} - -platform_do_upgrade_trx() { - local flash_type=$(platform_flash_type) - - case "$flash_type" in - "serial") - default_do_upgrade "$@" - ;; - "nand") - echo "Firmware upgrade on NAND devices is REALLY unsupported." - ;; - esac +platform_extract_trx_from_cybertan() { + dd if="$1" of="$2" bs=32 skip=1 } platform_do_upgrade() { local file_type=$(platform_identify "$1") + local trx="$1" + + [ "$(platform_flash_type)" == "nand" ] && { + echo "Firmware upgrade on NAND devices is REALLY unsupported." + return + } case "$file_type" in - "chk") platform_do_upgrade_chk "$ARGV";; - "cybertan") platform_do_upgrade_cybertan "$ARGV";; - *) platform_do_upgrade_trx "$ARGV";; + "chk") trx="/tmp/$1.trx"; platform_extract_trx_from_chk "$1" "$trx";; + "cybertan") trx="/tmp/$1.trx"; platform_extract_trx_from_cybertan "$1" "$trx";; esac + + shift + default_do_upgrade "$trx" "$@" } -- cgit v1.2.3