summaryrefslogtreecommitdiff
path: root/tools/scramble.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/scramble.c')
-rw-r--r--tools/scramble.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/scramble.c b/tools/scramble.c
index b7c8d1f41a..9f18e96e85 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -102,7 +102,8 @@ void usage(void)
102 "\t type of binary, eg. RBOS, RBBL\n" 102 "\t type of binary, eg. RBOS, RBBL\n"
103 "\t-add=X Rockbox generic \"add-up\" checksum format\n" 103 "\t-add=X Rockbox generic \"add-up\" checksum format\n"
104 "\t (X values: h100, h120, h140, h300, ipco, nano, ipvd, mn2g\n" 104 "\t (X values: h100, h120, h140, h300, ipco, nano, ipvd, mn2g\n"
105 "\t ip3g, ip4g, mini, iax5, h10, h10_5gb, tpj2, e200)\n" 105 "\t ip3g, ip4g, mini, iax5, h10, h10_5gb, tpj2,\n"
106 "\t c200, e200)\n"
106 "\nNo option results in Archos standard player/recorder format.\n"); 107 "\nNo option results in Archos standard player/recorder format.\n");
107 108
108 exit(1); 109 exit(1);
@@ -228,6 +229,8 @@ int main (int argc, char** argv)
228 modelnum = 18; 229 modelnum = 18;
229 else if(!strcmp(&argv[1][5], "1g2g")) 230 else if(!strcmp(&argv[1][5], "1g2g"))
230 modelnum = 19; 231 modelnum = 19;
232 else if(!strcmp(&argv[1][5], "c200"))
233 modelnum = 20;
231 else { 234 else {
232 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]); 235 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]);
233 return 2; 236 return 2;