diff options
-rw-r--r-- | linux-user/main.c | 11 | ||||
-rw-r--r-- | qemu-img.c | 4 | ||||
-rw-r--r-- | vl.c | 4 |
3 files changed, 10 insertions, 9 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index baa90731dc..e3a23742e5 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -1,7 +1,7 @@ /* * qemu user main * - * Copyright (c) 2003 Fabrice Bellard + * Copyright (c) 2003-2008 Fabrice Bellard * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -1892,10 +1892,11 @@ void cpu_loop (CPUState *env) void usage(void) { - printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2007 Fabrice Bellard\n" - "usage: qemu-" TARGET_ARCH " [-h] [-g] [-d opts] [-L path] [-s size] [-cpu model] program [arguments...]\n" + printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n" + "usage: qemu-" TARGET_ARCH " [options] program [arguments...]\n" "Linux CPU emulator (compiled for %s emulation)\n" "\n" + "Standard options:\n" "-h print this help\n" "-g port wait gdb connection to port\n" "-L path set the elf interpreter prefix (default=%s)\n" @@ -1903,12 +1904,12 @@ void usage(void) "-cpu model select CPU (-cpu ? for list)\n" "-drop-ld-preload drop LD_PRELOAD for target process\n" "\n" - "debug options:\n" + "Debug options:\n" "-d options activate log (logfile=%s)\n" "-p pagesize set the host page size to 'pagesize'\n" "-strace log system calls\n" "\n" - "environment variables:\n" + "Environment variables:\n" "QEMU_STRACE Print system calls and arguments similar to the\n" " 'strace' program. Enable by setting to any value.\n" , diff --git a/qemu-img.c b/qemu-img.c index 0857993945..ac1d3317f1 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -1,7 +1,7 @@ /* * QEMU disk image utility * - * Copyright (c) 2003-2007 Fabrice Bellard + * Copyright (c) 2003-2008 Fabrice Bellard * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -83,7 +83,7 @@ static void format_print(void *opaque, const char *name) static void help(void) { - printf("qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2007 Fabrice Bellard\n" + printf("qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2008 Fabrice Bellard\n" "usage: qemu-img command [command options]\n" "QEMU disk image utility\n" "\n" @@ -1,7 +1,7 @@ /* * QEMU System Emulator * - * Copyright (c) 2003-2007 Fabrice Bellard + * Copyright (c) 2003-2008 Fabrice Bellard * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -7488,7 +7488,7 @@ static int main_loop(void) static void help(int exitcode) { - printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003-2007 Fabrice Bellard\n" + printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n" "usage: %s [options] [disk_image]\n" "\n" "'disk_image' is a raw hard image image for IDE hard disk 0\n" |