diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2019-07-14 19:03:19 +0200 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2019-07-17 08:05:38 +0200 |
commit | 8b4bc7abe073489a3595eeb2d81818852319c148 (patch) | |
tree | 34a2b388aba0e1235718f21d03671b4682ec5248 /target/linux/ipq806x | |
parent | d9593b0809e42e9d75cc3ac4407ec30faaf70b15 (diff) | |
download | upstream-8b4bc7abe073489a3595eeb2d81818852319c148.tar.gz upstream-8b4bc7abe073489a3595eeb2d81818852319c148.tar.bz2 upstream-8b4bc7abe073489a3595eeb2d81818852319c148.zip |
treewide: sysupgrade: don't use $ARGV in platform_do_upgrade()
stage2 passes image path to platform_do_upgrade() as an argument so it
can be simply accessed using $1
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Diffstat (limited to 'target/linux/ipq806x')
-rw-r--r-- | target/linux/ipq806x/base-files/lib/upgrade/platform.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/ipq806x/base-files/lib/upgrade/platform.sh b/target/linux/ipq806x/base-files/lib/upgrade/platform.sh index 2f0190629e..5919613cb9 100644 --- a/target/linux/ipq806x/base-files/lib/upgrade/platform.sh +++ b/target/linux/ipq806x/base-files/lib/upgrade/platform.sh @@ -13,7 +13,7 @@ platform_do_upgrade() { buffalo,wxr-2533dhp) buffalo_upgrade_prepare_ubi CI_ROOTPART="ubi_rootfs" - nand_do_upgrade "$ARGV" + nand_do_upgrade "$1" ;; compex,wpq864|\ netgear,d7800 |\ @@ -23,24 +23,24 @@ platform_do_upgrade() { qcom,ipq8064-ap148 |\ qcom,ipq8064-ap161 |\ zyxel,nbg6817) - nand_do_upgrade "$ARGV" + nand_do_upgrade "$1" ;; linksys,ea8500) - platform_do_upgrade_linksys "$ARGV" + platform_do_upgrade_linksys "$1" ;; tplink,c2600) PART_NAME="os-image:rootfs" MTD_CONFIG_ARGS="-s 0x200000" - default_do_upgrade "$ARGV" + default_do_upgrade "$1" ;; tplink,vr2600v) PART_NAME="kernel:rootfs" MTD_CONFIG_ARGS="-s 0x200000" - default_do_upgrade "$ARGV" + default_do_upgrade "$1" ;; nec,wg2600hp |\ *) - default_do_upgrade "$ARGV" + default_do_upgrade "$1" ;; esac } |