summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-11 12:50:00 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-11 12:50:00 +0000
commitdd52043cac5659810d6a9c0e7fc1fe7396398a9e (patch)
tree7c85ffdc570d8e47e5c4c74ee81abcf23d512f7e
parent7f4df94cb4421cea648a98b69109c3ee6bcd2c54 (diff)
downloadrockbox-dd52043cac5659810d6a9c0e7fc1fe7396398a9e.tar.gz
rockbox-dd52043cac5659810d6a9c0e7fc1fe7396398a9e.zip
provide 0x10000 as default flash address for Gmini if just pressing return
on the question git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5908 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 593b166a63..788dcfef54 100755
--- a/tools/configure
+++ b/tools/configure
@@ -59,6 +59,12 @@ whichaddr () {
59 echo "In this case, reply '0x10000' (no quotes) and " 59 echo "In this case, reply '0x10000' (no quotes) and "
60 echo "re-configure when you know better." 60 echo "re-configure when you know better."
61 loadaddress=`input` 61 loadaddress=`input`
62
63 if [ "0$loadaddress" = "0" ]; then
64 #default
65 loadaddress="0x10000";
66 fi
67 echo "You selected $loadaddress"
62 ;; 68 ;;
63 *) 69 *)
64 ;; 70 ;;