Commit 9e89a4be8e8da513d679110cd01062d546a518d2
1 parent
61a8c4ec
boot device 'b' is not supported
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1136 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
2 deletions
vl.c
... | ... | @@ -2497,7 +2497,7 @@ void help(void) |
2497 | 2497 | "-hda/-hdb file use 'file' as IDE hard disk 0/1 image\n" |
2498 | 2498 | "-hdc/-hdd file use 'file' as IDE hard disk 2/3 image\n" |
2499 | 2499 | "-cdrom file use 'file' as IDE cdrom image (cdrom is ide1 master)\n" |
2500 | - "-boot [a|b|c|d] boot on floppy (a, b), hard disk (c) or CD-ROM (d)\n" | |
2500 | + "-boot [a|c|d] boot on floppy (a), hard disk (c) or CD-ROM (d)\n" | |
2501 | 2501 | "-snapshot write to temporary files instead of disk image files\n" |
2502 | 2502 | "-m megs set virtual RAM size to megs MB [default=%d]\n" |
2503 | 2503 | "-nographic disable graphical output and redirect serial I/Os to console\n" |
... | ... | @@ -2910,7 +2910,7 @@ int main(int argc, char **argv) |
2910 | 2910 | break; |
2911 | 2911 | case QEMU_OPTION_boot: |
2912 | 2912 | boot_device = optarg[0]; |
2913 | - if (boot_device != 'a' && boot_device != 'b' && | |
2913 | + if (boot_device != 'a' && | |
2914 | 2914 | boot_device != 'c' && boot_device != 'd') { |
2915 | 2915 | fprintf(stderr, "qemu: invalid boot device '%c'\n", boot_device); |
2916 | 2916 | exit(1); | ... | ... |