From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51615) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWoJS-0003Og-EA for qemu-devel@nongnu.org; Fri, 09 Nov 2012 08:08:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TWoJF-0004Y8-Ba for qemu-devel@nongnu.org; Fri, 09 Nov 2012 08:07:58 -0500 Received: from mx1.redhat.com ([209.132.183.28]:49226) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWoJF-0004WE-0A for qemu-devel@nongnu.org; Fri, 09 Nov 2012 08:07:45 -0500 From: Eduardo Habkost Date: Fri, 9 Nov 2012 11:08:32 -0200 Message-Id: <1352466519-5779-18-git-send-email-ehabkost@redhat.com> In-Reply-To: <1352466519-5779-1-git-send-email-ehabkost@redhat.com> References: <1352466519-5779-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 17/24] qdev-properties.c: add copyright/license information List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, riku.voipio@iki.fi, blauwirbel@gmail.com, Anthony Liguori , Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= Add copyright and license information, based on git log, and discussion at: http://article.gmane.org/gmane.comp.emulators.qemu/176405 Message-ID: <20121017201414.GA5665@otherpad.lan.raisama.net> The list of Copyright owners is huge, but I didn't think I really could leave any of the authors out of the list. Signed-off-by: Eduardo Habkost --- The only reason I am doing this is because: - I am going to mvoe some of the qdev-properties.c file to another file - I need to add a copyright/license header to the new file. See http://article.gmane.org/gmane.comp.emulators.qemu/176367 - So, I need to document the copyright/license of the current qdev-properties.c code I would really love to avoid this whole archaeology/legalese work, because I am not a lawyer. I am only doing that because of the "new files should have a copyright header" requirement. Cc: Amit Shah Cc: Anthony Liguori Cc: Anthony PERARD Cc: Blue Swirl Cc: Christian Borntraeger Cc: Christoph Egger Cc: David 'Digit' Turner Cc: Donald Dutile Cc: dunrong huang Cc: Gerd Hoffmann Cc: Isaku Yamahata Cc: Jan Kiszka Cc: Jan Kiszka Cc: Juan Quintela Cc: Kevin Wolf Cc: Kusanagi Kouichi Cc: Markus Armbruster Cc: Michael Roth Cc: Michael S. Tsirkin Cc: Paolo Bonzini Cc: Stefan Hajnoczi Cc: Stefan Weil Cc: Stefan Weil Cc: Zhi Yong Wu --- hw/qdev-properties.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/hw/qdev-properties.c b/hw/qdev-properties.c index 81d901c..ff5aa0a 100644 --- a/hw/qdev-properties.c +++ b/hw/qdev-properties.c @@ -1,3 +1,33 @@ +/* + * qdev property parsing and global properties + * + * Copyright (c) 2009-2010 Gerd Hoffmann + * Copyright (c) 2009 Christoph Egger + * Copyright (c) 2009-2010 Blue Swirl + * Copyright (c) 2009 Juan Quintela + * Copyright (c) 2010 Michael S. Tsirkin + * Copyright (c) 2010,2012 Stefan Weil + * Copyright (c) 2010-2012 Markus Armbruster + * Copyright (c) 2010 Kevin Wolf + * Copyright (c) 2010 Isaku Yamahata + * Copyright (c) 2011 David 'Digit' Turner + * Copyright (c) 2011-2012 Amit Shah + * Copyright (c) 2011 Kusanagi Kouichi + * Copyright (c) 2011-2012 Anthony Liguori + * Copyright (c) 2011 Donald Dutile + * Copyright (c) 2011-2012 Jan Kiszka + * Copyright (c) 2011-2012 Paolo Bonzini + * Copyright (c) 2012 Stefan Hajnoczi + * Copyright (c) 2012 dunrong huang + * Copyright (c) 2012 Michael Roth + * Copyright (c) 2012 Anthony PERARD + * Copyright (c) 2012 Christian Borntraeger + * Copyright (c) 2012 Zhi Yong Wu + * + * This work is licensed under the terms of the GNU GPL, version 2 or later. + * See the COPYING file in the top-level directory. + */ + #include "net.h" #include "qdev.h" #include "qerror.h" -- 1.7.11.4