diff options
author | Stefan Reinauer <stefan.reinauer@coresystems.de> | 2010-06-09 21:10:13 +0200 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-06-10 22:47:08 -0400 |
commit | 203f6f385d948c578e59dafdb79b9fe01b27af91 (patch) | |
tree | 36049eb66d63b8fb9d09cd02792b80d4964f2472 /src/boot.c | |
parent | 12cbb43b9dc8a16f712188cb308a0eb0321f3e20 (diff) | |
download | seabios-203f6f385d948c578e59dafdb79b9fe01b27af91.tar.gz |
SeaBIOS CD/DVD abbreviations
- Use the same description text for CD and DVD drives all over the tree.
- Mention DVD first as it's more likely these days
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Diffstat (limited to 'src/boot.c')
-rw-r--r-- | src/boot.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -29,9 +29,9 @@ boot_setup(void) dprintf(3, "init boot device ordering\n"); memset(&IPL, 0, sizeof(IPL)); + struct ipl_entry_s *ie = &IPL.bev[0]; // Floppy drive - struct ipl_entry_s *ie = &IPL.bev[0]; ie->type = IPL_TYPE_FLOPPY; ie->description = "Floppy"; ie++; @@ -44,7 +44,7 @@ boot_setup(void) // CDROM if (CONFIG_CDROM_BOOT) { ie->type = IPL_TYPE_CDROM; - ie->description = "CD-Rom"; + ie->description = "DVD/CD"; ie++; } @@ -191,7 +191,7 @@ menu_show_cdrom(struct ipl_entry_s *ie, int menupos) int i; for (i = 0; i < Drives.cdcount; i++) { struct drive_s *drive_g = getDrive(EXTTYPE_CD, i); - printf("%d. CD-Rom [%s]\n", menupos + i, drive_g->desc); + printf("%d. DVD/CD [%s]\n", menupos + i, drive_g->desc); } return Drives.cdcount; } |