From e6dde60a3e95fe176fa41aff6ea1d72aa8f7d68d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 8 Jul 2008 07:13:05 +0000 Subject: 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 --- tools/rockboxdev.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) 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-* ;; -- cgit