diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-06-07 17:47:21 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-06-07 17:47:21 +0000 |
commit | fce0151791e7408fae12863bde4c23b227838b42 (patch) | |
tree | 160288477f90dd420cd562cf14e2544347683bec /target/linux | |
parent | ef14abf2bb83f45d7de08ddcc0176eea972d2989 (diff) | |
download | master-187ad058-fce0151791e7408fae12863bde4c23b227838b42.tar.gz master-187ad058-fce0151791e7408fae12863bde4c23b227838b42.tar.bz2 master-187ad058-fce0151791e7408fae12863bde4c23b227838b42.zip |
[rb532] fix image names in the wget2nand script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11400 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/rb532/base-files/sbin/wget2nand | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/rb532/base-files/sbin/wget2nand b/target/linux/rb532/base-files/sbin/wget2nand index 67e4a94a81..710bfa399f 100755 --- a/target/linux/rb532/base-files/sbin/wget2nand +++ b/target/linux/rb532/base-files/sbin/wget2nand @@ -23,7 +23,7 @@ url=$1 echo "No URL specified for image TGZ" echo "Usage : $0 URL" exit 1 -} +} boot="$(find_mtd_part 'RouterBoard NAND Boot')" main="$(find_mtd_part 'rootfs')" @@ -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 |