diff options
author | Robert Menes <rmenes@rockbox.org> | 2008-09-23 20:59:47 +0000 |
---|---|---|
committer | Robert Menes <rmenes@rockbox.org> | 2008-09-23 20:59:47 +0000 |
commit | 2d4998ac246575c5707b132c7077bf677a0ba50c (patch) | |
tree | 0fae6cc8b62bfb0a14bc67fdbe9e07e9a1be5f8b | |
parent | bb95d9026641f783b96a09c466f7632d1f9e8cc9 (diff) |
Remove some nonessential comments from the c100 section.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18604 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-x | tools/configure | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/tools/configure b/tools/configure index 745c2ee7b8..dd78b1333a 100755 --- a/tools/configure +++ b/tools/configure @@ -1651,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 - boottool="$rootdir/tools/scramble -tcc=crc" + 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" |