Revision 0db63474

b/Makefile.target
12 12
QEMU_USER=qemu-$(TARGET_ARCH)
13 13
# system emulator name
14 14
ifdef CONFIG_SOFTMMU
15
QEMU_SYSTEM=qemu-softmmu
16
else
17 15
QEMU_SYSTEM=qemu
16
else
17
QEMU_SYSTEM=qemu-fast
18 18
endif
19 19

  
20 20
ifdef CONFIG_USER_ONLY
b/vl.c
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 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

  

Also available in: Unified diff