From patchwork Fri Apr 27 10:08:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 155455 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 99363B6F13 for ; Fri, 27 Apr 2012 20:08:54 +1000 (EST) Received: from localhost ([::1]:46305 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNi6e-0005fQ-A8 for incoming@patchwork.ozlabs.org; Fri, 27 Apr 2012 06:08:52 -0400 Received: from eggs.gnu.org ([208.118.235.92]:34743) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNi6L-0005NG-N4 for qemu-devel@nongnu.org; Fri, 27 Apr 2012 06:08:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SNi6G-0000Ko-Qr for qemu-devel@nongnu.org; Fri, 27 Apr 2012 06:08:33 -0400 Received: from cantor2.suse.de ([195.135.220.15]:45085 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SNi6G-0000Ke-HQ for qemu-devel@nongnu.org; Fri, 27 Apr 2012 06:08:28 -0400 Received: from relay1.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id 6E1709C818; Fri, 27 Apr 2012 12:08:25 +0200 (CEST) From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Date: Fri, 27 Apr 2012 12:08:14 +0200 Message-Id: <1335521295-26117-2-git-send-email-afaerber@suse.de> X-Mailer: git-send-email 1.7.7 In-Reply-To: <1335521295-26117-1-git-send-email-afaerber@suse.de> References: <1335521295-26117-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 195.135.220.15 Cc: Anthony Liguori , libvir-list@redhat.com, Riku Voipio , Blue Swirl , Anthony Liguori , =?UTF-8?q?Andreas=20F=C3=A4rber?= Subject: [Qemu-devel] [PATCH v2 1/2] Update copyright banners X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The copyright statements printed by the various executables have not been touched since r3893 / 68d0f70e3c180253b637996f985dd9d248bd910a. So, judging by -version output, a user could get the impression that QEMU was last modified in 2008. We should therefore update it to the current year. However just changing the year seems wrong since Fabrice didn't contribute in recent years. Therefore extend the copyright statement to cover "Fabrice Bellard and contributors" so that it can be updated to the current year. Cc: Fabrice Bellard Signed-off-by: Andreas Färber --- bsd-user/main.c | 3 ++- linux-user/main.c | 2 +- vl.c | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/bsd-user/main.c b/bsd-user/main.c index 0689e38..b2b5b69 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -672,7 +672,8 @@ void cpu_loop(CPUSPARCState *env) static void usage(void) { - printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n" + printf("qemu-" TARGET_ARCH " version " QEMU_VERSION + ", Copyright (c) 2003-2012 Fabrice Bellard and contributors\n" "usage: qemu-" TARGET_ARCH " [options] program [arguments...]\n" "BSD CPU emulator (compiled for %s emulation)\n" "\n" diff --git a/linux-user/main.c b/linux-user/main.c index 191b750..8762075 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -3120,7 +3120,7 @@ static void handle_arg_strace(const char *arg) static void handle_arg_version(const char *arg) { printf("qemu-" TARGET_ARCH " version " QEMU_VERSION QEMU_PKGVERSION - ", Copyright (c) 2003-2008 Fabrice Bellard\n"); + ", Copyright (c) 2003-2012 Fabrice Bellard and contributors\n"); exit(0); } diff --git a/vl.c b/vl.c index ae91a8a..9798f87 100644 --- a/vl.c +++ b/vl.c @@ -1561,7 +1561,8 @@ static void main_loop(void) static void version(void) { - printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n"); + printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION + ", Copyright (c) 2003-2012 Fabrice Bellard and contributors\n"); } static void help(int exitcode)