First check for arguments before even getting an IP address
authorFlorian Fainelli <florian@openwrt.org>
Fri, 4 Jan 2008 04:20:24 +0000 (04:20 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Fri, 4 Jan 2008 04:20:24 +0000 (04:20 +0000)
SVN-Revision: 10110

target/linux/adm5120/router_le/base-files/sbin/wget2nand

index 9b27b579b4b238794fa3547e8e197edb1ba7a10b..8843c286ee0b20a8c3bcd7549ef8c1e44b0fa240 100755 (executable)
        exit 1
 }
 
-# first get an address for br-lan using udhcpc
-killall udhcpc
-/sbin/udhcpc -i br-lan
-
 # need to find the wget server from the command line
 url=$1
 [ -z "$url" ] && {
-       echo "No URL specified for image TGZ"
-       echo "Usage : $0 URL"
-       exit 1
-} 
+        echo "No URL specified for image TGZ"
+        echo "Usage : $0 URL"
+        exit 1
+}
+
+
+# first get an address for br-lan using udhcpc
+killall udhcpc
+/sbin/udhcpc -i br-lan
 
 boot="$(find_mtd_part 'RouterBoard NAND Boot')"
 main="$(find_mtd_part 'rootfs')"