summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/rockboxdev.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh
index fd4982b..f5d4da2 100755
--- a/tools/rockboxdev.sh
+++ b/tools/rockboxdev.sh
@@ -166,6 +166,9 @@ case $1 in
target="arm-elf"
gccpatch="rockbox-multilibs-arm-elf-gcc-4.0.3_2.diff"
;;
+ [Ii])
+ target="mipsel-elf"
+ ;;
*)
echo "unsupported"
exit
@@ -261,6 +264,7 @@ echo "Select target arch:"
echo "s - sh (Archos models)"
echo "m - m68k (iriver h1x0/h3x0, ifp7x0 and iaudio)"
echo "a - arm (ipods, iriver H10, Sansa, etc)"
+echo "i - mips (Jz4740 and ATJ-based players)"
echo "all - all three compilers"
arch=`input`
@@ -269,6 +273,9 @@ case $arch in
[Ss])
buildone $arch
;;
+ [Ii])
+ buildone $arch
+ ;;
[Mm])
buildone $arch
;;
@@ -285,6 +292,9 @@ case $arch in
buildone a
+ # include this when we want MIPS added in the "build all"
+ #buildone i
+
# show the summaries:
cat $builddir/summary-*
;;