mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
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:
parent
29dd0ad2aa
commit
64c993be73
1 changed files with 107 additions and 36 deletions
99
tools/configure
vendored
99
tools/configure
vendored
|
@ -282,7 +282,7 @@ arm1136jfscc () {
|
||||||
|
|
||||||
mipselcc () {
|
mipselcc () {
|
||||||
prefixtools mipsel-elf-
|
prefixtools mipsel-elf-
|
||||||
GCCOPTS="$CCOPTS -mips32 -mno-abicalls"
|
GCCOPTS="$CCOPTS -march=mips32 -mno-mips16 -mno-abicalls -mlong-calls"
|
||||||
GCCOPTIMIZE="-fomit-frame-pointer"
|
GCCOPTIMIZE="-fomit-frame-pointer"
|
||||||
GCCOPTS="$GCCOPTS -fno-pic -fno-builtin -fno-exceptions -ffunction-sections -msoft-float -G 0"
|
GCCOPTS="$GCCOPTS -fno-pic -fno-builtin -fno-exceptions -ffunction-sections -msoft-float -G 0"
|
||||||
endian="little"
|
endian="little"
|
||||||
|
@ -693,13 +693,15 @@ cat <<EOF
|
||||||
==Tatung== ==Olympus== ==Logik==
|
==Tatung== ==Olympus== ==Logik==
|
||||||
60) Elio TPJ-1022 70) M:Robe 500 80) DAX 1GB MP3/DAB
|
60) Elio TPJ-1022 70) M:Robe 500 80) DAX 1GB MP3/DAB
|
||||||
71) M:Robe 100
|
71) M:Robe 100
|
||||||
|
|
||||||
==Creative== ==Philips== ==Meizu==
|
==Creative== ==Philips== ==Meizu==
|
||||||
90) Zen Vision:M 30GB 100) GoGear SA9200 110) M6SL
|
90) Zen Vision:M 30GB 100) GoGear SA9200 110) M6SL
|
||||||
91) Zen Vision:M 60GB 101) GoGear HDD1630
|
91) Zen Vision:M 60GB 101) GoGear HDD1630 111) M6SP
|
||||||
92) Zen Vision
|
92) Zen Vision 112) M3
|
||||||
|
|
||||||
==Onda==
|
==Onda==
|
||||||
120) VX747
|
120) VX747
|
||||||
|
121) VX767
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
buildfor=`input`;
|
buildfor=`input`;
|
||||||
|
@ -1290,10 +1292,10 @@ fi
|
||||||
target="-DIAUDIO_7"
|
target="-DIAUDIO_7"
|
||||||
memory=16 # always
|
memory=16 # always
|
||||||
arm946cc
|
arm946cc
|
||||||
tool="$rootdir/tools/scramble -add i7"
|
tool="$rootdir/tools/scramble -add=i7"
|
||||||
boottool="$rootdir/tools/scramble -tcc=crc"
|
boottool="$rootdir/tools/scramble -tcc=crc"
|
||||||
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
|
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
|
||||||
bmp2rb_native="$rootdir/tools/bmp2rb -f 5"
|
bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
|
||||||
output="rockbox.iaudio"
|
output="rockbox.iaudio"
|
||||||
appextra="recorder:gui"
|
appextra="recorder:gui"
|
||||||
plugins="yes"
|
plugins="yes"
|
||||||
|
@ -1649,18 +1651,21 @@ fi
|
||||||
54|c100)
|
54|c100)
|
||||||
target_id=42
|
target_id=42
|
||||||
modelname="c100"
|
modelname="c100"
|
||||||
target="-DSANSA_C100" # The #define used in firmware/export/config.h for conditional compilation
|
target="-DSANSA_C100"
|
||||||
memory=32 # how many megabytes of RAM
|
memory=32 # unsure, must check
|
||||||
arm946cc # Which compiler to use, see the beginning of the file
|
arm946cc
|
||||||
tool="$rootdir/tools/scramble -add=c100" # Which command to use for creating a rockbox binary to be loaded by the bootloader
|
tool="$rootdir/tools/scramble -add=c100"
|
||||||
boottool="$rootdir/tools/scramble -tcc=crc"
|
boottool="$rootdir/tools/scramble -tcc=crc"
|
||||||
bootoutput="player.rom"
|
bootoutput="player.rom"
|
||||||
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" # How to create a monochrome bitmap
|
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
|
||||||
bmp2rb_native="$rootdir/tools/bmp2rb -f 4" # How to create a native bitmap
|
bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
|
||||||
output="rockbox.c100" # The name of the Rockbox binary file
|
output="rockbox.c100"
|
||||||
appextra="recorder:gui" # What directories in the apps/ tree to include in compilation
|
appextra="recorder:gui"
|
||||||
plugins="" # Does it support plugins?
|
plugins=""
|
||||||
|
# toolset is the tools within the tools directory that we build for
|
||||||
|
# this particular target.
|
||||||
toolset=$tccbitmaptools
|
toolset=$tccbitmaptools
|
||||||
|
# architecture, manufacturer and model for the target-tree build
|
||||||
t_cpu="arm"
|
t_cpu="arm"
|
||||||
t_manufacturer="tcc77x"
|
t_manufacturer="tcc77x"
|
||||||
t_model="c100"
|
t_model="c100"
|
||||||
|
@ -1760,6 +1765,50 @@ fi
|
||||||
t_model="meizu-m6sl"
|
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)
|
120|ondavx747)
|
||||||
target_id=44
|
target_id=44
|
||||||
modelname="ondavx747"
|
modelname="ondavx747"
|
||||||
|
@ -1781,6 +1830,28 @@ fi
|
||||||
t_manufacturer="ingenic_jz47xx"
|
t_manufacturer="ingenic_jz47xx"
|
||||||
t_model="onda_vx747"
|
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!"
|
echo "Please select a supported target platform!"
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue