summaryrefslogtreecommitdiff
path: root/tools/scramble.c
diff options
context:
space:
mode:
authorMark Arigo <markarigo@gmail.com>2009-12-25 04:05:01 +0000
committerMark Arigo <markarigo@gmail.com>2009-12-25 04:05:01 +0000
commit6908cc52358df90a27452ab0f085fa41674440ff (patch)
tree32c307c3164e24ad427ac98b389bad823c363034 /tools/scramble.c
parent4a85eb7d9f7212bf2a0974fa42c2cb4f1790f99e (diff)
downloadrockbox-6908cc52358df90a27452ab0f085fa41674440ff.tar.gz
rockbox-6908cc52358df90a27452ab0f085fa41674440ff.zip
Merry Christmas Gogear HDD6330 owners! This is the start of the HDD6330 port. At the moment, it's essentially a copy of the HDD1630 port with a minimal LCD driver. The touchpad doesn't work as expected, but you can still kind of navigate and listen to music/radio.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24112 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/scramble.c')
-rw-r--r--tools/scramble.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/scramble.c b/tools/scramble.c
index c9b6d15dd4..9bfdbda905 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -123,9 +123,9 @@ void usage(void)
123 "\t (X values: h100, h120, h140, h300, ipco, nano, ipvd, mn2g\n" 123 "\t (X values: h100, h120, h140, h300, ipco, nano, ipvd, mn2g\n"
124 "\t ip3g, ip4g, mini, iax5, iam5, iam3, h10, h10_5gb,\n" 124 "\t ip3g, ip4g, mini, iax5, iam5, iam3, h10, h10_5gb,\n"
125 "\t tpj2, c200, e200, giga, gigs, m100, m500, d2,\n"); 125 "\t tpj2, c200, e200, giga, gigs, m100, m500, d2,\n");
126 printf("\t 9200, 1630, ldax, m200, c100, clip, e2v2, m2v4,\n" 126 printf("\t 9200, 1630, 6330, ldax, m200, c100, clip, e2v2,\n"
127 "\t fuze, c2v2, clv2, y820, y920, y925, x747, 747p, \n" 127 "\t m2v4, fuze, c2v2, clv2, y820, y920, y925, x747,\n"
128 "\t x777, nn2g, m244)\n"); 128 "\t 747p, x777, nn2g, m244)\n");
129 printf("\nNo option results in Archos standard player/recorder format.\n"); 129 printf("\nNo option results in Archos standard player/recorder format.\n");
130 130
131 exit(1); 131 exit(1);
@@ -318,6 +318,8 @@ int main (int argc, char** argv)
318 modelnum = 62; 318 modelnum = 62;
319 else if (!strcmp(&argv[1][5], "x767")) 319 else if (!strcmp(&argv[1][5], "x767"))
320 modelnum = 64; 320 modelnum = 64;
321 else if (!strcmp(&argv[1][5], "6330")) /* Philips HDD6330 */
322 modelnum = 65;
321 else if (!strcmp(&argv[1][5], "m244")) 323 else if (!strcmp(&argv[1][5], "m244"))
322 modelnum = 131; 324 modelnum = 131;
323 else { 325 else {