summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-07-08 07:13:05 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-07-08 07:13:05 +0000
commite6dde60a3e95fe176fa41aff6ea1d72aa8f7d68d (patch)
treeaf754091250c869719c68404e06944c449e1100e
parent39de8688f9c8f3c535ba9019d36106f12e0cdff2 (diff)
introducing MIPS support, not included in the "build all" action yet
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17986 a1c6a512-1295-4272-9138-f99709370657
-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
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-*
;;