forked from len0rd/rockbox
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
This commit is contained in:
parent
39de8688f9
commit
e6dde60a3e
1 changed files with 10 additions and 0 deletions
|
|
@ -166,6 +166,9 @@ case $1 in
|
||||||
target="arm-elf"
|
target="arm-elf"
|
||||||
gccpatch="rockbox-multilibs-arm-elf-gcc-4.0.3_2.diff"
|
gccpatch="rockbox-multilibs-arm-elf-gcc-4.0.3_2.diff"
|
||||||
;;
|
;;
|
||||||
|
[Ii])
|
||||||
|
target="mipsel-elf"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "unsupported"
|
echo "unsupported"
|
||||||
exit
|
exit
|
||||||
|
|
@ -261,6 +264,7 @@ echo "Select target arch:"
|
||||||
echo "s - sh (Archos models)"
|
echo "s - sh (Archos models)"
|
||||||
echo "m - m68k (iriver h1x0/h3x0, ifp7x0 and iaudio)"
|
echo "m - m68k (iriver h1x0/h3x0, ifp7x0 and iaudio)"
|
||||||
echo "a - arm (ipods, iriver H10, Sansa, etc)"
|
echo "a - arm (ipods, iriver H10, Sansa, etc)"
|
||||||
|
echo "i - mips (Jz4740 and ATJ-based players)"
|
||||||
echo "all - all three compilers"
|
echo "all - all three compilers"
|
||||||
|
|
||||||
arch=`input`
|
arch=`input`
|
||||||
|
|
@ -269,6 +273,9 @@ case $arch in
|
||||||
[Ss])
|
[Ss])
|
||||||
buildone $arch
|
buildone $arch
|
||||||
;;
|
;;
|
||||||
|
[Ii])
|
||||||
|
buildone $arch
|
||||||
|
;;
|
||||||
[Mm])
|
[Mm])
|
||||||
buildone $arch
|
buildone $arch
|
||||||
;;
|
;;
|
||||||
|
|
@ -285,6 +292,9 @@ case $arch in
|
||||||
|
|
||||||
buildone a
|
buildone a
|
||||||
|
|
||||||
|
# include this when we want MIPS added in the "build all"
|
||||||
|
#buildone i
|
||||||
|
|
||||||
# show the summaries:
|
# show the summaries:
|
||||||
cat $builddir/summary-*
|
cat $builddir/summary-*
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue