summaryrefslogtreecommitdiff
path: root/tools/scramble.c
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-01-13 03:05:29 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-01-13 03:05:29 +0000
commit8b926e98f82a8b6ffccc40a65388b6bbcd1c2538 (patch)
treed4e2c1794138b589276e8f61a54580038a161c67 /tools/scramble.c
parentc2dae8742cdd9724fcd0189a762df684c0fed2bd (diff)
downloadrockbox-8b926e98f82a8b6ffccc40a65388b6bbcd1c2538.zip
rockbox-8b926e98f82a8b6ffccc40a65388b6bbcd1c2538.tar.gz
rockbox-8b926e98f82a8b6ffccc40a65388b6bbcd1c2538.tar.bz2
rockbox-8b926e98f82a8b6ffccc40a65388b6bbcd1c2538.tar.xz
Add Sansa Clip+ target to test mkamsboot
UNTESTED, could ver well brick your Clip+ If it works, booting should just be delayed by a small delay (perhaps not noticeable) Hopefully the Clipv2 checks will work for Clip+ and then we'll be able to test the other Clipv2 code (LCD/button) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24219 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/scramble.c')
-rw-r--r--tools/scramble.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/scramble.c b/tools/scramble.c
index 9bfdbda..3ee8b26 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -125,7 +125,7 @@ void usage(void)
"\t tpj2, c200, e200, giga, gigs, m100, m500, d2,\n");
printf("\t 9200, 1630, 6330, ldax, m200, c100, clip, e2v2,\n"
"\t m2v4, fuze, c2v2, clv2, y820, y920, y925, x747,\n"
- "\t 747p, x777, nn2g, m244)\n");
+ "\t 747p, x777, nn2g, m244, cli+)\n");
printf("\nNo option results in Archos standard player/recorder format.\n");
exit(1);
@@ -320,6 +320,8 @@ int main (int argc, char** argv)
modelnum = 64;
else if (!strcmp(&argv[1][5], "6330")) /* Philips HDD6330 */
modelnum = 65;
+ else if (!strcmp(&argv[1][5], "cli+")) /* Sansa Clip+ */
+ modelnum = 66;
else if (!strcmp(&argv[1][5], "m244"))
modelnum = 131;
else {