Add copyright and license information, based on git log, and discussion at:
http://article.gmane.org/gmane.comp.emulators.qemu/176405 Message-ID: <[email protected]> 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 <[email protected]> --- 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 <[email protected]> Cc: Anthony Liguori <[email protected]> Cc: Anthony PERARD <[email protected]> Cc: Blue Swirl <[email protected]> Cc: Christian Borntraeger <[email protected]> Cc: Christoph Egger <[email protected]> Cc: David 'Digit' Turner <[email protected]> Cc: Donald Dutile <[email protected]> Cc: dunrong huang <[email protected]> Cc: Gerd Hoffmann <[email protected]> Cc: Isaku Yamahata <[email protected]> Cc: Jan Kiszka <[email protected]> Cc: Jan Kiszka <[email protected]> Cc: Juan Quintela <[email protected]> Cc: Kevin Wolf <[email protected]> Cc: Kusanagi Kouichi <[email protected]> Cc: Markus Armbruster <[email protected]> Cc: Michael Roth <[email protected]> Cc: Michael S. Tsirkin <[email protected]> Cc: Paolo Bonzini <[email protected]> Cc: Stefan Hajnoczi <[email protected]> Cc: Stefan Weil <[email protected]> Cc: Stefan Weil <[email protected]> Cc: Zhi Yong Wu <[email protected]> --- 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 <[email protected]> + * Copyright (c) 2009 Christoph Egger <[email protected]> + * Copyright (c) 2009-2010 Blue Swirl <[email protected]> + * Copyright (c) 2009 Juan Quintela <[email protected]> + * Copyright (c) 2010 Michael S. Tsirkin <[email protected]> + * Copyright (c) 2010,2012 Stefan Weil <[email protected]> + * Copyright (c) 2010-2012 Markus Armbruster <[email protected]> + * Copyright (c) 2010 Kevin Wolf <[email protected]> + * Copyright (c) 2010 Isaku Yamahata <[email protected]> + * Copyright (c) 2011 David 'Digit' Turner <[email protected]> + * Copyright (c) 2011-2012 Amit Shah <[email protected]> + * Copyright (c) 2011 Kusanagi Kouichi <[email protected]> + * Copyright (c) 2011-2012 Anthony Liguori <[email protected]> + * Copyright (c) 2011 Donald Dutile <[email protected]> + * Copyright (c) 2011-2012 Jan Kiszka <[email protected]> + * Copyright (c) 2011-2012 Paolo Bonzini <[email protected]> + * Copyright (c) 2012 Stefan Hajnoczi <[email protected]> + * Copyright (c) 2012 dunrong huang <[email protected]> + * Copyright (c) 2012 Michael Roth <[email protected]> + * Copyright (c) 2012 Anthony PERARD <[email protected]> + * Copyright (c) 2012 Christian Borntraeger <[email protected]> + * Copyright (c) 2012 Zhi Yong Wu <[email protected]> + * + * 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
