Fix routerboard boot partition name in wget2nand (#3791)
[openwrt/svn-archive/archive.git] / target / linux / rb532 / base-files / sbin / wget2nand
index 67e4a94a8164ba4352b39973b19e632d0c5b9dc9..2101195bca29bb661bdd14f6e9165c94b25e2233 100755 (executable)
@@ -23,9 +23,9 @@ url=$1
        echo "No URL specified for image TGZ"
        echo "Usage : $0 URL"
        exit 1
-} 
+}
 
-boot="$(find_mtd_part 'RouterBoard NAND Boot')"
+boot="$(find_mtd_part 'Routerboard NAND Boot')"
 main="$(find_mtd_part 'rootfs')"
 [ -z "$boot" -o -z "$main" ] && {
        echo "Cannot find NAND Flash partitions"
@@ -44,8 +44,8 @@ mount -t yaffs2 "$main" /tmp/wget2nand/
 mount -t yaffs2 "$boot" /tmp/wget2nand-boot
 
 echo "Copying filesystem..."
-( wget -O - $url/openwrt-rb532-2.6-rootfs.tgz) | ( cd /tmp/wget2nand/; tar xvz )
-wget -O /tmp/wget2nand-boot/kernel $url/openwrt-rb532-2.6-vmlinux 
+( wget -O - $url/openwrt-rb532-rootfs.tgz) | ( cd /tmp/wget2nand/; tar xvz )
+wget -O /tmp/wget2nand-boot/kernel $url/openwrt-rb532-vmlinux
 
 # No need to patch the kernel, this was done during the build process
 chmod +x /tmp/wget2nand-boot/kernel