summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-01-16 00:01:05 +0000
committerDave Chapman <dave@dchapman.com>2006-01-16 00:01:05 +0000
commit25c66fc632e721e5b742f67b7ba2685318f807e1 (patch)
tree7053169ed2f2edeea918b7d2946538ff7a3ef231 /tools
parenta36b1d4083e5cf34df1b217516be28471e7d0dc7 (diff)
downloadrockbox-25c66fc632e721e5b742f67b7ba2685318f807e1.tar.gz
rockbox-25c66fc632e721e5b742f67b7ba2685318f807e1.zip
Cosmetic bugfix - display correct message when generating firmware image for the 5g
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8350 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rw-r--r--tools/ipod_fw.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/ipod_fw.c b/tools/ipod_fw.c
index c2854edaa3..3e5ac74470 100644
--- a/tools/ipod_fw.c
+++ b/tools/ipod_fw.c
@@ -453,7 +453,11 @@ main(int argc, char **argv)
453 453
454 printf("Generating firmware image compatible with "); 454 printf("Generating firmware image compatible with ");
455 if (fw_version == 3) { 455 if (fw_version == 3) {
456 printf("iPod mini, 4g and iPod photo...\n"); 456 if (needs_rcsc) {
457 printf("iPod video\n");
458 } else {
459 printf("iPod mini, 4g and iPod photo/color...\n");
460 }
457 } else { 461 } else {
458 printf("1g, 2g and 3g iPods...\n"); 462 printf("1g, 2g and 3g iPods...\n");
459 } 463 }