diff options
author | Dave Chapman <dave@dchapman.com> | 2008-09-22 19:15:18 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2008-09-22 19:15:18 +0000 |
commit | 85807cd44ef931b25a283f8ddd733453e94f9966 (patch) | |
tree | a7245518ba1ae2566741990f55cae0bb5fab1772 /tools | |
parent | 80458b6222d417700eb4aaf1a9f71456f4512d28 (diff) | |
download | rockbox-85807cd44ef931b25a283f8ddd733453e94f9966.tar.gz rockbox-85807cd44ef931b25a283f8ddd733453e94f9966.zip |
Trivial changes to make the main Rockbox builds for the Sansa m200 and Logik DAX ports compile. Note that some codecs are currently disabled (due to lowmem on these targets), but that needs more work and analysis to decide how much RAM we want to allocate to codecs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18566 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rw-r--r-- | tools/scramble.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/scramble.c b/tools/scramble.c index ffcde9328b..3b2ff67291 100644 --- a/tools/scramble.c +++ b/tools/scramble.c | |||
@@ -122,7 +122,7 @@ void usage(void) | |||
122 | "\t (X values: h100, h120, h140, h300, ipco, nano, ipvd, mn2g\n" | 122 | "\t (X values: h100, h120, h140, h300, ipco, nano, ipvd, mn2g\n" |
123 | "\t ip3g, ip4g, mini, iax5, iam5, iam3, h10, h10_5gb,\n" | 123 | "\t ip3g, ip4g, mini, iax5, iam5, iam3, h10, h10_5gb,\n" |
124 | "\t tpj2, c200, e200, giga, gigs, m100, m500, d2,\n"); | 124 | "\t tpj2, c200, e200, giga, gigs, m100, m500, d2,\n"); |
125 | printf("\t 9200, 1630)\n"); | 125 | printf("\t 9200, 1630, ldax, m200)\n"); |
126 | printf("\nNo option results in Archos standard player/recorder format.\n"); | 126 | printf("\nNo option results in Archos standard player/recorder format.\n"); |
127 | 127 | ||
128 | exit(1); | 128 | exit(1); |
@@ -277,6 +277,10 @@ int main (int argc, char** argv) | |||
277 | modelnum = 25; | 277 | modelnum = 25; |
278 | else if(!strcmp(&argv[1][5], "9200")) /* Philips SA9200 */ | 278 | else if(!strcmp(&argv[1][5], "9200")) /* Philips SA9200 */ |
279 | modelnum = 26; | 279 | modelnum = 26; |
280 | else if (!strcmp(&argv[1][5], "ldax")) | ||
281 | modelnum = 27; | ||
282 | else if (!strcmp(&argv[1][5], "m200")) | ||
283 | modelnum = 29; | ||
280 | else if(!strcmp(&argv[1][5], "1630")) /* Philips HDD1630 */ | 284 | else if(!strcmp(&argv[1][5], "1630")) /* Philips HDD1630 */ |
281 | modelnum = 31; | 285 | modelnum = 31; |
282 | else if (!strcmp(&argv[1][5], "i7")) | 286 | else if (!strcmp(&argv[1][5], "i7")) |