Commit 68d0f70e3c180253b637996f985dd9d248bd910a
1 parent
bfe31212
copyright update
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3893 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
3 changed files
with
10 additions
and
9 deletions
linux-user/main.c
1 | 1 | /* |
2 | 2 | * qemu user main |
3 | 3 | * |
4 | - * Copyright (c) 2003 Fabrice Bellard | |
4 | + * Copyright (c) 2003-2008 Fabrice Bellard | |
5 | 5 | * |
6 | 6 | * This program is free software; you can redistribute it and/or modify |
7 | 7 | * it under the terms of the GNU General Public License as published by |
... | ... | @@ -1892,10 +1892,11 @@ void cpu_loop (CPUState *env) |
1892 | 1892 | |
1893 | 1893 | void usage(void) |
1894 | 1894 | { |
1895 | - printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2007 Fabrice Bellard\n" | |
1896 | - "usage: qemu-" TARGET_ARCH " [-h] [-g] [-d opts] [-L path] [-s size] [-cpu model] program [arguments...]\n" | |
1895 | + printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n" | |
1896 | + "usage: qemu-" TARGET_ARCH " [options] program [arguments...]\n" | |
1897 | 1897 | "Linux CPU emulator (compiled for %s emulation)\n" |
1898 | 1898 | "\n" |
1899 | + "Standard options:\n" | |
1899 | 1900 | "-h print this help\n" |
1900 | 1901 | "-g port wait gdb connection to port\n" |
1901 | 1902 | "-L path set the elf interpreter prefix (default=%s)\n" |
... | ... | @@ -1903,12 +1904,12 @@ void usage(void) |
1903 | 1904 | "-cpu model select CPU (-cpu ? for list)\n" |
1904 | 1905 | "-drop-ld-preload drop LD_PRELOAD for target process\n" |
1905 | 1906 | "\n" |
1906 | - "debug options:\n" | |
1907 | + "Debug options:\n" | |
1907 | 1908 | "-d options activate log (logfile=%s)\n" |
1908 | 1909 | "-p pagesize set the host page size to 'pagesize'\n" |
1909 | 1910 | "-strace log system calls\n" |
1910 | 1911 | "\n" |
1911 | - "environment variables:\n" | |
1912 | + "Environment variables:\n" | |
1912 | 1913 | "QEMU_STRACE Print system calls and arguments similar to the\n" |
1913 | 1914 | " 'strace' program. Enable by setting to any value.\n" |
1914 | 1915 | , | ... | ... |
qemu-img.c
1 | 1 | /* |
2 | 2 | * QEMU disk image utility |
3 | 3 | * |
4 | - * Copyright (c) 2003-2007 Fabrice Bellard | |
4 | + * Copyright (c) 2003-2008 Fabrice Bellard | |
5 | 5 | * |
6 | 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | 7 | * of this software and associated documentation files (the "Software"), to deal |
... | ... | @@ -83,7 +83,7 @@ static void format_print(void *opaque, const char *name) |
83 | 83 | |
84 | 84 | static void help(void) |
85 | 85 | { |
86 | - printf("qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2007 Fabrice Bellard\n" | |
86 | + printf("qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2008 Fabrice Bellard\n" | |
87 | 87 | "usage: qemu-img command [command options]\n" |
88 | 88 | "QEMU disk image utility\n" |
89 | 89 | "\n" | ... | ... |
vl.c
1 | 1 | /* |
2 | 2 | * QEMU System Emulator |
3 | 3 | * |
4 | - * Copyright (c) 2003-2007 Fabrice Bellard | |
4 | + * Copyright (c) 2003-2008 Fabrice Bellard | |
5 | 5 | * |
6 | 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | 7 | * of this software and associated documentation files (the "Software"), to deal |
... | ... | @@ -7488,7 +7488,7 @@ static int main_loop(void) |
7488 | 7488 | |
7489 | 7489 | static void help(int exitcode) |
7490 | 7490 | { |
7491 | - printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003-2007 Fabrice Bellard\n" | |
7491 | + printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n" | |
7492 | 7492 | "usage: %s [options] [disk_image]\n" |
7493 | 7493 | "\n" |
7494 | 7494 | "'disk_image' is a raw hard image image for IDE hard disk 0\n" | ... | ... |