summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-02-09 21:22:36 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-02-09 21:22:36 +0000
commitf42f42e5543f18d11142bb98e3c8677a04b99318 (patch)
treecf63d31ad1126e32603e40d30ba3c06ce2aef650
parentb0ad4cfbb514087bab8739c8604d97e8c27e0545 (diff)
downloadrockbox-f42f42e5543f18d11142bb98e3c8677a04b99318.tar.gz
rockbox-f42f42e5543f18d11142bb98e3c8677a04b99318.zip
Only offer the (G)db stub alternative on targets that support it: ifp7x0
is the only one atm. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8644 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure13
1 files changed, 12 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index ddfea63cb3..bc48cd28e0 100755
--- a/tools/configure
+++ b/tools/configure
@@ -852,8 +852,19 @@ fi
852################################################################## 852##################################################################
853# Figure out build "type" 853# Figure out build "type"
854# 854#
855
856 # the ifp7x0 is the only platform that supports building a gdb stub like
857 # this
858 case $archos in
859 ifp7xx)
860 gdbstub="(G)DB stub, "
861 ;;
862 *)
863 ;;
864 esac
865
855 echo "" 866 echo ""
856 echo "Build (N)ormal, (D)evel, (S)imulator, (B)ootloader, (G)DB stub, (M)anual? (N)" 867 echo "Build (N)ormal, (D)evel, (S)imulator, (B)ootloader, $gdbstub(M)anual? (N)"
857 868
858 option=`input`; 869 option=`input`;
859 870