From 2ee5e48fa75d273ffcfa7ac1680bb663d5cb5a7b Mon Sep 17 00:00:00 2001 From: floh1111 Date: Fri, 8 Jun 2012 12:56:53 +0000 Subject: [PATCH] Modify download section --- build_script.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build_script.sh b/build_script.sh index 4b202e6..0ec38a6 100755 --- a/build_script.sh +++ b/build_script.sh @@ -277,10 +277,14 @@ case "$1" in if [ "$2" = "help" ] || [ "$2" = "" ]; then echo "This option downloads the ready configured images from an external location if needet." echo "Usage: $0 $1 http://downloadfolder router-type" + echo "Common downloadfolder for firmware version 0.3 is http://dev.freifunk-ol.de/firmware/0.3/" routers else - wget "$2/openwrt-$3-root.squashfs" - wget "$2/openwrt-$3-vmlinux.lzma" + mkdir ./bin + cd ./bin + wget "$2/$3/openwrt-$3-root.squashfs" + wget "$2/$3/openwrt-$3-vmlinux.lzma" + cd .. fi ;; "flash")