diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-02-25 13:26:46 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-02-25 13:26:46 +0000 |
commit | 0094b0500c87fa9a8a8ab48e877730a9680915b2 (patch) | |
tree | 3100795c25f436b6871cfcaf0abfb287a26673f2 /tools/scramble.c | |
parent | 0eb50d5106a936eeded0d15b46cf39a3d4afd204 (diff) |
Add Sansa Fuzev2 to the target tree. Bootloader builds, but is completely untested.
Compilation shows a warning for the first argument of the lcd_bitmap() call in show_logo().
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24911 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/scramble.c')
-rw-r--r-- | tools/scramble.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/scramble.c b/tools/scramble.c index 7d981ae23d..ca3fd3bb35 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, cli+)\n"); + "\t 747p, x777, nn2g, m244, cli+, fuz2)\n"); printf("\nNo option results in Archos standard player/recorder format.\n"); exit(1); @@ -324,6 +324,8 @@ int main (int argc, char** argv) modelnum = 66; else if (!strcmp(&argv[1][5], "v500")) /* Packard Bell Vibe 500 */ modelnum = 67; + else if (!strcmp(&argv[1][5], "fuz2")) /* Sansa Fuze v2 */ + modelnum = 68; else if (!strcmp(&argv[1][5], "m244")) modelnum = 131; else { |