summaryrefslogtreecommitdiff
path: root/tools/rockboxdev.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/rockboxdev.sh')
-rwxr-xr-xtools/rockboxdev.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh
index fd4982b96e..f5d4da2c90 100755
--- a/tools/rockboxdev.sh
+++ b/tools/rockboxdev.sh
@@ -166,6 +166,9 @@ case $1 in
166 target="arm-elf" 166 target="arm-elf"
167 gccpatch="rockbox-multilibs-arm-elf-gcc-4.0.3_2.diff" 167 gccpatch="rockbox-multilibs-arm-elf-gcc-4.0.3_2.diff"
168 ;; 168 ;;
169 [Ii])
170 target="mipsel-elf"
171 ;;
169 *) 172 *)
170 echo "unsupported" 173 echo "unsupported"
171 exit 174 exit
@@ -261,6 +264,7 @@ echo "Select target arch:"
261echo "s - sh (Archos models)" 264echo "s - sh (Archos models)"
262echo "m - m68k (iriver h1x0/h3x0, ifp7x0 and iaudio)" 265echo "m - m68k (iriver h1x0/h3x0, ifp7x0 and iaudio)"
263echo "a - arm (ipods, iriver H10, Sansa, etc)" 266echo "a - arm (ipods, iriver H10, Sansa, etc)"
267echo "i - mips (Jz4740 and ATJ-based players)"
264echo "all - all three compilers" 268echo "all - all three compilers"
265 269
266arch=`input` 270arch=`input`
@@ -269,6 +273,9 @@ case $arch in
269 [Ss]) 273 [Ss])
270 buildone $arch 274 buildone $arch
271 ;; 275 ;;
276 [Ii])
277 buildone $arch
278 ;;
272 [Mm]) 279 [Mm])
273 buildone $arch 280 buildone $arch
274 ;; 281 ;;
@@ -285,6 +292,9 @@ case $arch in
285 292
286 buildone a 293 buildone a
287 294
295 # include this when we want MIPS added in the "build all"
296 #buildone i
297
288 # show the summaries: 298 # show the summaries:
289 cat $builddir/summary-* 299 cat $builddir/summary-*
290 ;; 300 ;;