summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure34
1 files changed, 34 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 6410f9043f..4f0917068d 100755
--- a/tools/configure
+++ b/tools/configure
@@ -280,6 +280,15 @@ arm1136jfscc () {
280 gccchoice="4.0.3" 280 gccchoice="4.0.3"
281} 281}
282 282
283mipselcc () {
284 prefixtools mipsel-linux-
285 GCCOPTS="$CCOPTS -mips32 -mno-abicalls"
286 GCCOPTIMIZE="-fomit-frame-pointer"
287 GCCOPTS="$GCCOPTS -fno-pic -fno-builtin -fno-exceptions -ffunction-sections -msoft-float -G 0"
288 endian="little"
289 gccchoice="4.1.2"
290}
291
283whichadvanced () { 292whichadvanced () {
284 ################################################################## 293 ##################################################################
285 # Prompt for specific developer options 294 # Prompt for specific developer options
@@ -688,6 +697,9 @@ cat <<EOF
688 90) Zen Vision:M 30GB 100) GoGear SA9200 110) M6SL 697 90) Zen Vision:M 30GB 100) GoGear SA9200 110) M6SL
689 91) Zen Vision:M 60GB 101) GoGear HDD1630 698 91) Zen Vision:M 60GB 101) GoGear HDD1630
690 92) Zen Vision 699 92) Zen Vision
700
701 ==Onda==
702 120) VX747
691EOF 703EOF
692 704
693 buildfor=`input`; 705 buildfor=`input`;
@@ -1747,6 +1759,28 @@ fi
1747 t_manufacturer="s5l8700" 1759 t_manufacturer="s5l8700"
1748 t_model="meizu-m6sl" 1760 t_model="meizu-m6sl"
1749 ;; 1761 ;;
1762
1763 120|ondavx747)
1764 target_id=44
1765 modelname="ondavx747"
1766 target="-DONDA_VX747"
1767 memory=16 #FIXME
1768 mipselcc
1769 tool="cp"
1770 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
1771 bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
1772 output="rockbox.vx747"
1773 appextra="recorder:gui"
1774 plugins="no" #FIXME
1775 swcodec="yes"
1776 toolset=$genericbitmaptools
1777 boottool="cp"
1778 bootoutput="rockboot.vx747"
1779 # architecture, manufacturer and model for the target-tree build
1780 t_cpu="mips"
1781 t_manufacturer="ingenic_jz47xx"
1782 t_model="onda_vx747"
1783 ;;
1750 *) 1784 *)
1751 echo "Please select a supported target platform!" 1785 echo "Please select a supported target platform!"
1752 exit 1786 exit