target/linux/*/base-files/lib/upgrade/platform.sh - wrong check for ARGC
authorJohn Crispin <john@openwrt.org>
Mon, 2 Jun 2014 12:43:22 +0000 (12:43 +0000)
committerJohn Crispin <john@openwrt.org>
Mon, 2 Jun 2014 12:43:22 +0000 (12:43 +0000)
commitf933a741a9c44cea58b2b3837dca99fc55d0b957
treeb87ca90d9e7b0432bfda4c69a8fef02d08f8e748
parenta866b7eb9d45ecb986c275cbd2033322b54d2606
target/linux/*/base-files/lib/upgrade/platform.sh - wrong check for ARGC

ARGC is a 'C-ism', but not known/valid in shell-syntax - insert the correct
var $# (=number of args) here. under normal conditions this had no impact,
but we should at least correct it. the error was observable like this:

root@box:~ [ -e "/etc/functions.sh" ] && . /etc/functions.sh
root@box:~ [ -e "/lib/functions.sh" ] && . /lib/functions.sh
root@box:~ . /lib/upgrade/platform.sh
root@box:~ . /lib/upgrade/common.sh
root@box:~ platform_check_image /tmp/myfirmware.bin
ash: bad number
root@box:~ echo $?
0

Signed-off-by: Bastian Bittorf <bittorf@bluebottle.com>
SVN-Revision: 40915
18 files changed:
target/linux/adm5120/base-files/lib/upgrade/platform.sh
target/linux/adm8668/base-files/lib/upgrade/platform.sh
target/linux/ar71xx/base-files/lib/upgrade/platform.sh
target/linux/atheros/base-files/lib/upgrade/platform.sh
target/linux/au1000/base-files/lib/upgrade/platform.sh
target/linux/avr32/base-files/lib/upgrade/platform.sh
target/linux/brcm47xx/base-files/lib/upgrade/platform.sh
target/linux/brcm63xx/base-files/lib/upgrade/platform.sh
target/linux/cns21xx/base-files/lib/upgrade/platform.sh
target/linux/cns3xxx/base-files/lib/upgrade/platform.sh
target/linux/ixp4xx/base-files/lib/upgrade/platform.sh
target/linux/lantiq/base-files/lib/upgrade/platform.sh
target/linux/mpc85xx/base-files/lib/upgrade/platform.sh
target/linux/ppc40x/base-files/lib/upgrade/platform.sh
target/linux/ramips/base-files/lib/upgrade/platform.sh
target/linux/x86/base-files/lib/upgrade/platform.sh
target/linux/x86/olpc/base-files/lib/upgrade/platform.sh
target/linux/x86_64/base-files/lib/upgrade/platform.sh