Commit 0db634747efe579cc2ac44b05b01f33bcfaeb1df
1 parent
6e59c1db
qemu with softmmu is now the default executable
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@412 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
2 changed files
with
16 additions
and
4 deletions
Makefile.target
vl.c
| ... | ... | @@ -3446,7 +3446,7 @@ int main_loop(void *opaque) |
| 3446 | 3446 | void help(void) |
| 3447 | 3447 | { |
| 3448 | 3448 | printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003 Fabrice Bellard\n" |
| 3449 | - "usage: qemu [options] [disk_image]\n" | |
| 3449 | + "usage: %s [options] [disk_image]\n" | |
| 3450 | 3450 | "\n" |
| 3451 | 3451 | "'disk_image' is a raw hard image image for IDE hard disk 0\n" |
| 3452 | 3452 | "\n" |
| ... | ... | @@ -3472,8 +3472,20 @@ void help(void) |
| 3472 | 3472 | "-L path set the directory for the BIOS and VGA BIOS\n" |
| 3473 | 3473 | "\n" |
| 3474 | 3474 | "During emulation, use C-a h to get terminal commands:\n", |
| 3475 | - DEFAULT_NETWORK_SCRIPT, DEFAULT_GDBSTUB_PORT); | |
| 3475 | +#ifdef CONFIG_SOFTMMU | |
| 3476 | + "qemu", | |
| 3477 | +#else | |
| 3478 | + "qemu-fast", | |
| 3479 | +#endif | |
| 3480 | + DEFAULT_NETWORK_SCRIPT, | |
| 3481 | + DEFAULT_GDBSTUB_PORT); | |
| 3476 | 3482 | term_print_help(); |
| 3483 | +#ifndef CONFIG_SOFTMMU | |
| 3484 | + printf("\n" | |
| 3485 | + "NOTE: this version of QEMU is faster but it needs slightly patched OSes to\n" | |
| 3486 | + "work. Please use the 'qemu' executable to have a more accurate (but slower)\n" | |
| 3487 | + "PC emulation.\n"); | |
| 3488 | +#endif | |
| 3477 | 3489 | exit(1); |
| 3478 | 3490 | } |
| 3479 | 3491 | ... | ... |