Remove some nonessential comments from the c100 section.

git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_0@18605 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Menes 2008-09-23 21:00:50 +00:00
parent 29dd0ad2aa
commit 64c993be73

99
tools/configure vendored
View file

@ -282,7 +282,7 @@ arm1136jfscc () {
mipselcc () {
prefixtools mipsel-elf-
GCCOPTS="$CCOPTS -mips32 -mno-abicalls"
GCCOPTS="$CCOPTS -march=mips32 -mno-mips16 -mno-abicalls -mlong-calls"
GCCOPTIMIZE="-fomit-frame-pointer"
GCCOPTS="$GCCOPTS -fno-pic -fno-builtin -fno-exceptions -ffunction-sections -msoft-float -G 0"
endian="little"
@ -693,13 +693,15 @@ cat <<EOF
==Tatung== ==Olympus== ==Logik==
60) Elio TPJ-1022 70) M:Robe 500 80) DAX 1GB MP3/DAB
71) M:Robe 100
==Creative== ==Philips== ==Meizu==
90) Zen Vision:M 30GB 100) GoGear SA9200 110) M6SL
91) Zen Vision:M 60GB 101) GoGear HDD1630
92) Zen Vision
91) Zen Vision:M 60GB 101) GoGear HDD1630 111) M6SP
92) Zen Vision 112) M3
==Onda==
120) VX747
121) VX767
EOF
buildfor=`input`;
@ -1290,10 +1292,10 @@ fi
target="-DIAUDIO_7"
memory=16 # always
arm946cc
tool="$rootdir/tools/scramble -add i7"
tool="$rootdir/tools/scramble -add=i7"
boottool="$rootdir/tools/scramble -tcc=crc"
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
bmp2rb_native="$rootdir/tools/bmp2rb -f 5"
bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
output="rockbox.iaudio"
appextra="recorder:gui"
plugins="yes"
@ -1649,18 +1651,21 @@ fi
54|c100)
target_id=42
modelname="c100"
target="-DSANSA_C100" # The #define used in firmware/export/config.h for conditional compilation
memory=32 # how many megabytes of RAM
arm946cc # Which compiler to use, see the beginning of the file
tool="$rootdir/tools/scramble -add=c100" # Which command to use for creating a rockbox binary to be loaded by the bootloader
target="-DSANSA_C100"
memory=32 # unsure, must check
arm946cc
tool="$rootdir/tools/scramble -add=c100"
boottool="$rootdir/tools/scramble -tcc=crc"
bootoutput="player.rom"
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" # How to create a monochrome bitmap
bmp2rb_native="$rootdir/tools/bmp2rb -f 4" # How to create a native bitmap
output="rockbox.c100" # The name of the Rockbox binary file
appextra="recorder:gui" # What directories in the apps/ tree to include in compilation
plugins="" # Does it support plugins?
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
output="rockbox.c100"
appextra="recorder:gui"
plugins=""
# toolset is the tools within the tools directory that we build for
# this particular target.
toolset=$tccbitmaptools
# architecture, manufacturer and model for the target-tree build
t_cpu="arm"
t_manufacturer="tcc77x"
t_model="c100"
@ -1760,6 +1765,50 @@ fi
t_model="meizu-m6sl"
;;
111|meizum6sp)
target_id=46
modelname="meizum6sp"
target="-DMEIZU_M6SP"
memory=16 # always
arm940tbecc
tool="cp"
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
output="rockbox.meizu"
appextra="recorder:gui"
plugins="no" #FIXME
swcodec="yes"
toolset=$genericbitmaptools
boottool="cp"
bootoutput="rockboot.ebn"
# architecture, manufacturer and model for the target-tree build
t_cpu="arm"
t_manufacturer="s5l8700"
t_model="meizu-m6sp"
;;
112|meizum3)
target_id=47
modelname="meizum3"
target="-DMEIZU_M3"
memory=16 # always
arm940tbecc
tool="cp"
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
output="rockbox.meizu"
appextra="recorder:gui"
plugins="no" #FIXME
swcodec="yes"
toolset=$genericbitmaptools
boottool="cp"
bootoutput="rockboot.ebn"
# architecture, manufacturer and model for the target-tree build
t_cpu="arm"
t_manufacturer="s5l8700"
t_model="meizu-m3"
;;
120|ondavx747)
target_id=44
modelname="ondavx747"
@ -1781,6 +1830,28 @@ fi
t_manufacturer="ingenic_jz47xx"
t_model="onda_vx747"
;;
121|ondavx767)
target_id=45
modelname="ondavx767"
target="-DONDA_VX767"
memory=16 #FIXME
mipselcc
tool="cp"
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
output="rockbox.vx767"
appextra="recorder:gui"
plugins="no" #FIXME
swcodec="yes"
toolset=$genericbitmaptools
boottool="cp"
bootoutput="rockboot.vx767"
# architecture, manufacturer and model for the target-tree build
t_cpu="mips"
t_manufacturer="ingenic_jz47xx"
t_model="onda_vx767"
;;
*)
echo "Please select a supported target platform!"
exit