summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure3
-rw-r--r--tools/scramble.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure
index 1eec733243..a58e8c6e1c 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1709,7 +1709,7 @@ fi
1709 target_id=42 1709 target_id=42
1710 modelname="c100" 1710 modelname="c100"
1711 target="-DSANSA_C100" 1711 target="-DSANSA_C100"
1712 memory=32 # unsure, must check 1712 memory=2
1713 arm946cc 1713 arm946cc
1714 tool="$rootdir/tools/scramble -add=c100" 1714 tool="$rootdir/tools/scramble -add=c100"
1715 boottool="$rootdir/tools/scramble -tcc=crc" 1715 boottool="$rootdir/tools/scramble -tcc=crc"
@@ -1719,6 +1719,7 @@ fi
1719 output="rockbox.c100" 1719 output="rockbox.c100"
1720 appextra="recorder:gui" 1720 appextra="recorder:gui"
1721 plugins="" 1721 plugins=""
1722 swcodec="yes"
1722 # toolset is the tools within the tools directory that we build for 1723 # toolset is the tools within the tools directory that we build for
1723 # this particular target. 1724 # this particular target.
1724 toolset=$tccbitmaptools 1725 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)
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, ldax, m200, clip, e2v2, m2v4, fuze,\n" 125 printf("\t 9200, 1630, ldax, m200, c100, clip, e2v2, m2v4,\n"
126 "\t c2v2, clv2, y820, y920, y925)\n"); 126 "\t fuze, c2v2, clv2, y820, y920, y925)\n");
127 printf("\nNo option results in Archos standard player/recorder format.\n"); 127 printf("\nNo option results in Archos standard player/recorder format.\n");
128 128
129 exit(1); 129 exit(1);
@@ -278,6 +278,8 @@ int main (int argc, char** argv)
278 modelnum = 25; 278 modelnum = 25;
279 else if (!strcmp(&argv[1][5], "m200")) 279 else if (!strcmp(&argv[1][5], "m200"))
280 modelnum = 29; 280 modelnum = 29;
281 else if(!strcmp(&argv[1][5], "c100"))
282 modelnum = 30;
281 else if(!strcmp(&argv[1][5], "1630")) /* Philips HDD1630 */ 283 else if(!strcmp(&argv[1][5], "1630")) /* Philips HDD1630 */
282 modelnum = 31; 284 modelnum = 31;
283 else if (!strcmp(&argv[1][5], "i7")) 285 else if (!strcmp(&argv[1][5], "i7"))