From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40462) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxK9U-0005Vm-I0 for qemu-devel@nongnu.org; Thu, 11 Jul 2013 12:55:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxK9O-0007DS-HB for qemu-devel@nongnu.org; Thu, 11 Jul 2013 12:55:32 -0400 Received: from mx1.redhat.com ([209.132.183.28]:26682) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxK9O-0007DH-9S for qemu-devel@nongnu.org; Thu, 11 Jul 2013 12:55:26 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6BGtPsV022536 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 11 Jul 2013 12:55:25 -0400 Message-ID: <51DEE40E.10401@redhat.com> Date: Thu, 11 Jul 2013 18:57:50 +0200 From: Laszlo Ersek MIME-Version: 1.0 References: <1373464153-18979-1-git-send-email-mst@redhat.com> <1373464153-18979-3-git-send-email-mst@redhat.com> In-Reply-To: <1373464153-18979-3-git-send-email-mst@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 repost 2/9] i386: add ACPI table files from seabios List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: qemu-devel@nongnu.org On 07/10/13 15:51, Michael S. Tsirkin wrote: > This adds ASL code as well as scripts for processing it, > imported from seabios git tree > commit 51684b7ced75fb76776e8ee84833fcfb6ecf12dd > > Will be used for runtime acpi table generation. > > Note: > This patch reuses some code from SeaBIOS, which was originally under > LGPLv2 and then relicensed to GPLv3 or LGPLv3, in QEMU under GPLv2+. This > relicensing has been acked by all contributors that had contributed to the > code since the v2->v3 relicense. ACKs approving the v2+ relicensing are > listed below. The list might include ACKs from people not holding > copyright on any parts of the reused code, but it's better to err on the > side of caution and include them. > > Affected SeaBIOS files (GPLv2+ license headers added) > : > > src/acpi-dsdt-cpu-hotplug.dsl > src/acpi-dsdt-dbug.dsl > src/acpi-dsdt-hpet.dsl > src/acpi-dsdt-isa.dsl > src/acpi-dsdt-pci-crs.dsl > src/acpi.c > src/acpi.h > src/ssdt-misc.dsl > src/ssdt-pcihp.dsl > src/ssdt-proc.dsl > tools/acpi_extract.py > tools/acpi_extract_preprocess.py > > Each one of the listed people agreed to the following: > >> If you allow the use of your contribution in QEMU under the >> terms of GPLv2 or later as proposed by this patch, >> please respond to this mail including the line: >> >> Acked-by: Name > > Acked-by: Gerd Hoffmann > Acked-by: Jan Kiszka > Acked-by: Jason Baron > Acked-by: David Woodhouse > Acked-by: Gleb Natapov > Acked-by: Marcelo Tosatti > Acked-by: Dave Frodin > Acked-by: Paolo Bonzini > Acked-by: Kevin O'Connor > Acked-by: Laszlo Ersek > Acked-by: Kenji Kaneshige > Acked-by: Isaku Yamahata > Acked-by: Magnus Christensson > Acked-by: Hu Tao > Acked-by: Eduardo Habkost > > Signed-off-by: Michael S. Tsirkin > --- > hw/i386/acpi-dsdt-cpu-hotplug.dsl | 93 ++++++++ > hw/i386/acpi-dsdt-dbug.dsl | 41 ++++ > hw/i386/acpi-dsdt-hpet.dsl | 51 +++++ > hw/i386/acpi-dsdt-isa.dsl | 117 ++++++++++ > hw/i386/acpi-dsdt-pci-crs.dsl | 105 +++++++++ > hw/i386/acpi-dsdt.dsl | 343 ++++++++++++++++++++++++++++ > hw/i386/q35-acpi-dsdt.dsl | 452 +++++++++++++++++++++++++++++++++++++ > hw/i386/ssdt-misc.dsl | 73 ++++++ > hw/i386/ssdt-pcihp.dsl | 51 +++++ > hw/i386/ssdt-proc.dsl | 63 ++++++ > scripts/acpi_extract.py | 362 +++++++++++++++++++++++++++++ > scripts/acpi_extract_preprocess.py | 52 +++++ > 12 files changed, 1803 insertions(+) > create mode 100644 hw/i386/acpi-dsdt-cpu-hotplug.dsl > create mode 100644 hw/i386/acpi-dsdt-dbug.dsl > create mode 100644 hw/i386/acpi-dsdt-hpet.dsl > create mode 100644 hw/i386/acpi-dsdt-isa.dsl > create mode 100644 hw/i386/acpi-dsdt-pci-crs.dsl > create mode 100644 hw/i386/acpi-dsdt.dsl > create mode 100644 hw/i386/q35-acpi-dsdt.dsl > create mode 100644 hw/i386/ssdt-misc.dsl > create mode 100644 hw/i386/ssdt-pcihp.dsl > create mode 100644 hw/i386/ssdt-proc.dsl > create mode 100755 scripts/acpi_extract.py > create mode 100755 scripts/acpi_extract_preprocess.py Reviewed-by: Laszlo Ersek