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
| @@ -12,9 +12,9 @@ DYNGEN=../dyngen | @@ -12,9 +12,9 @@ DYNGEN=../dyngen | ||
| 12 | QEMU_USER=qemu-$(TARGET_ARCH) | 12 | QEMU_USER=qemu-$(TARGET_ARCH) |
| 13 | # system emulator name | 13 | # system emulator name |
| 14 | ifdef CONFIG_SOFTMMU | 14 | ifdef CONFIG_SOFTMMU |
| 15 | -QEMU_SYSTEM=qemu-softmmu | ||
| 16 | -else | ||
| 17 | QEMU_SYSTEM=qemu | 15 | QEMU_SYSTEM=qemu |
| 16 | +else | ||
| 17 | +QEMU_SYSTEM=qemu-fast | ||
| 18 | endif | 18 | endif |
| 19 | 19 | ||
| 20 | ifdef CONFIG_USER_ONLY | 20 | ifdef CONFIG_USER_ONLY |
vl.c
| @@ -3446,7 +3446,7 @@ int main_loop(void *opaque) | @@ -3446,7 +3446,7 @@ int main_loop(void *opaque) | ||
| 3446 | void help(void) | 3446 | void help(void) |
| 3447 | { | 3447 | { |
| 3448 | printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003 Fabrice Bellard\n" | 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 | "\n" | 3450 | "\n" |
| 3451 | "'disk_image' is a raw hard image image for IDE hard disk 0\n" | 3451 | "'disk_image' is a raw hard image image for IDE hard disk 0\n" |
| 3452 | "\n" | 3452 | "\n" |
| @@ -3472,8 +3472,20 @@ void help(void) | @@ -3472,8 +3472,20 @@ void help(void) | ||
| 3472 | "-L path set the directory for the BIOS and VGA BIOS\n" | 3472 | "-L path set the directory for the BIOS and VGA BIOS\n" |
| 3473 | "\n" | 3473 | "\n" |
| 3474 | "During emulation, use C-a h to get terminal commands:\n", | 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 | term_print_help(); | 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 | exit(1); | 3489 | exit(1); |
| 3478 | } | 3490 | } |
| 3479 | 3491 |