summaryrefslogtreecommitdiff
path: root/tools/scramble.c
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-06-20 10:54:13 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-06-20 10:54:13 +0000
commit582942016bdf3599952b343858ba9fb9785494e8 (patch)
tree05d17c750bc4ed952c0da49f9f000fc7ae96ed11 /tools/scramble.c
parentd13f49737a6a04fae8b8288ae6d25d33ac6e4dfc (diff)
downloadrockbox-582942016bdf3599952b343858ba9fb9785494e8.tar.gz
rockbox-582942016bdf3599952b343858ba9fb9785494e8.zip
* Commit a modified FS#10354 (thanks to Davide Quarta) - add support the VX747+ in scramble and configure
* Add support for the VX777 * Remove the touchscreen mode switching combo from the button driver git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21379 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/scramble.c')
-rw-r--r--tools/scramble.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/scramble.c b/tools/scramble.c
index 8bf8d3d034..cabe15f48d 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -123,7 +123,8 @@ void usage(void)
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, c100, clip, e2v2, m2v4,\n" 125 printf("\t 9200, 1630, ldax, m200, c100, clip, e2v2, m2v4,\n"
126 "\t fuze, c2v2, clv2, y820, y920, y925)\n"); 126 "\t fuze, c2v2, clv2, y820, y920, y925, x747, 747p, \n"
127 "\t x777)\n");
127 printf("\nNo option results in Archos standard player/recorder format.\n"); 128 printf("\nNo option results in Archos standard player/recorder format.\n");
128 129
129 exit(1); 130 exit(1);
@@ -300,6 +301,10 @@ int main (int argc, char** argv)
300 modelnum = 44; 301 modelnum = 44;
301 else if (!strcmp(&argv[1][5], "x747")) 302 else if (!strcmp(&argv[1][5], "x747"))
302 modelnum = 45; 303 modelnum = 45;
304 else if (!strcmp(&argv[1][5], "747p"))
305 modelnum = 54;
306 else if (!strcmp(&argv[1][5], "x777"))
307 modelnum = 61;
303 else if (!strcmp(&argv[1][5], "y820")) /* Samsung YH-820 */ 308 else if (!strcmp(&argv[1][5], "y820")) /* Samsung YH-820 */
304 modelnum = 57; 309 modelnum = 57;
305 else if (!strcmp(&argv[1][5], "y920")) /* Samsung YH-920 */ 310 else if (!strcmp(&argv[1][5], "y920")) /* Samsung YH-920 */