summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure13
1 files changed, 12 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index d61a70966b..e168bf0688 100755
--- a/tools/configure
+++ b/tools/configure
@@ -2451,7 +2451,7 @@ esac
2451if [ "$ARG_TYPE" ]; then 2451if [ "$ARG_TYPE" ]; then
2452 btype=$ARG_TYPE 2452 btype=$ARG_TYPE
2453else 2453else
2454 echo "Build (N)ormal, (A)dvanced, (S)imulator, (B)ootloader, (C)heckWPS, $gdbstub(M)anual: (Defaults to N)" 2454 echo "Build (N)ormal, (A)dvanced, (S)imulator, (B)ootloader, (C)heckWPS, (D)atabase tool, $gdbstub(M)anual: (Defaults to N)"
2455 btype=`input`; 2455 btype=`input`;
2456fi 2456fi
2457 2457
@@ -2543,6 +2543,17 @@ fi
2543 archosrom=''; 2543 archosrom='';
2544 echo "CheckWPS build selected" 2544 echo "CheckWPS build selected"
2545 ;; 2545 ;;
2546 [Dd])
2547 uname=`uname`
2548 simcc "database"
2549 toolset='';
2550 t_cpu='';
2551 GCCOPTS='';
2552 appsdir='\$(ROOTDIR)/tools/database';
2553 output='database.'${modelname};
2554 archosrom='';
2555 echo "Database tool build selected"
2556 ;;
2546 *) 2557 *)
2547 if [ "$modelname" = "e200r" ]; then 2558 if [ "$modelname" = "e200r" ]; then
2548 echo "Do not use the e200R target for regular builds. Use e200 instead." 2559 echo "Do not use the e200R target for regular builds. Use e200 instead."