summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-08-21 20:26:53 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-08-21 20:26:53 +0000
commit8ccd04c33d09faa09c648d38848ae284120b2c95 (patch)
tree09c029c1836a06f3f079cd3b2743b1596dcdf45f /tools/configure
parent0119ebb04466fbf10cb2d191313cd123d818acef (diff)
downloadrockbox-8ccd04c33d09faa09c648d38848ae284120b2c95.tar.gz
rockbox-8ccd04c33d09faa09c648d38848ae284120b2c95.zip
Add CheckWPS entry to tools/configure
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22456 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure12
1 files changed, 11 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index 486a4706db..2f96f377e5 100755
--- a/tools/configure
+++ b/tools/configure
@@ -2430,7 +2430,7 @@ esac
2430if [ "$ARG_TYPE" ]; then 2430if [ "$ARG_TYPE" ]; then
2431 btype=$ARG_TYPE 2431 btype=$ARG_TYPE
2432else 2432else
2433 echo "Build (N)ormal, (A)dvanced, (S)imulator, (B)ootloader, $gdbstub(M)anual: (Defaults to N)" 2433 echo "Build (N)ormal, (A)dvanced, (S)imulator, (B)ootloader, (C)heckWPS, $gdbstub(M)anual: (Defaults to N)"
2434 btype=`input`; 2434 btype=`input`;
2435fi 2435fi
2436 2436
@@ -2511,6 +2511,16 @@ fi
2511 apps="manual" 2511 apps="manual"
2512 echo "Manual build selected" 2512 echo "Manual build selected"
2513 ;; 2513 ;;
2514 [Cc])
2515 uname=`uname`
2516 simcc
2517 toolset='';
2518 t_cpu='';
2519 GCCOPTS='';
2520 appsdir='\$(ROOTDIR)/tools/checkwps';
2521 output='checkwps.'${modelname};
2522 echo "CheckWPS build selected"
2523 ;;
2514 *) 2524 *)
2515 if [ "$modelname" = "e200r" ]; then 2525 if [ "$modelname" = "e200r" ]; then
2516 echo "Do not use the e200R target for regular builds. Use e200 instead." 2526 echo "Do not use the e200R target for regular builds. Use e200 instead."