From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:47219) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TQrEI-0004p8-M2 for qemu-devel@nongnu.org; Tue, 23 Oct 2012 23:02:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TQrEG-0006OX-Gt for qemu-devel@nongnu.org; Tue, 23 Oct 2012 23:02:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:63582) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TQrEG-0006OP-8X for qemu-devel@nongnu.org; Tue, 23 Oct 2012 23:02:00 -0400 From: Eduardo Habkost Date: Wed, 24 Oct 2012 01:02:01 -0200 Message-Id: <1351047728-20360-18-git-send-email-ehabkost@redhat.com> In-Reply-To: <1351047728-20360-1-git-send-email-ehabkost@redhat.com> References: <1351047728-20360-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, "Michael S. Tsirkin" , Jan Kiszka , dunrong huang , Michael Roth , blauwirbel@gmail.com, Stefan Weil , Zhi Yong Wu , Donald Dutile , Gerd Hoffmann , Juan Quintela , Markus Armbruster , Christian Borntraeger , Anthony PERARD , Kusanagi Kouichi , Stefan Hajnoczi , Stefan Weil , riku.voipio@iki.fi, Christoph Egger , Jan Kiszka , Anthony Liguori , Paolo Bonzini , Kevin Wolf , David 'Digit' Turner , Anthony Liguori , Isaku Yamahata , Amit Shah , 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.7