From 86ce407803ee3575215e4535dada8f5b983f966f Mon Sep 17 00:00:00 2001 From: Marc Guay Date: Mon, 1 Jun 2009 12:37:25 +0000 Subject: c100: Get a regular build compiling. Very little functionality. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21153 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 3 ++- tools/scramble.c | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/configure b/tools/configure index 1eec733243..a58e8c6e1c 100755 --- a/tools/configure +++ b/tools/configure @@ -1709,7 +1709,7 @@ fi target_id=42 modelname="c100" target="-DSANSA_C100" - memory=32 # unsure, must check + memory=2 arm946cc tool="$rootdir/tools/scramble -add=c100" boottool="$rootdir/tools/scramble -tcc=crc" @@ -1719,6 +1719,7 @@ fi output="rockbox.c100" appextra="recorder:gui" plugins="" + swcodec="yes" # toolset is the tools within the tools directory that we build for # this particular target. toolset=$tccbitmaptools diff --git a/tools/scramble.c b/tools/scramble.c index ffb568b75e..8bf8d3d034 100644 --- a/tools/scramble.c +++ b/tools/scramble.c @@ -122,8 +122,8 @@ void usage(void) "\t (X values: h100, h120, h140, h300, ipco, nano, ipvd, mn2g\n" "\t ip3g, ip4g, mini, iax5, iam5, iam3, h10, h10_5gb,\n" "\t tpj2, c200, e200, giga, gigs, m100, m500, d2,\n"); - printf("\t 9200, 1630, ldax, m200, clip, e2v2, m2v4, fuze,\n" - "\t c2v2, clv2, y820, y920, y925)\n"); + printf("\t 9200, 1630, ldax, m200, c100, clip, e2v2, m2v4,\n" + "\t fuze, c2v2, clv2, y820, y920, y925)\n"); printf("\nNo option results in Archos standard player/recorder format.\n"); exit(1); @@ -278,6 +278,8 @@ int main (int argc, char** argv) modelnum = 25; else if (!strcmp(&argv[1][5], "m200")) modelnum = 29; + else if(!strcmp(&argv[1][5], "c100")) + modelnum = 30; else if(!strcmp(&argv[1][5], "1630")) /* Philips HDD1630 */ modelnum = 31; else if (!strcmp(&argv[1][5], "i7")) -- cgit