From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51299) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGQSb-0001Hy-3w for qemu-devel@nongnu.org; Tue, 05 Jan 2016 07:11:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aGQSY-0000Nm-0Y for qemu-devel@nongnu.org; Tue, 05 Jan 2016 07:11:33 -0500 Received: from mx1.redhat.com ([209.132.183.28]:57837) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGQSX-0000NZ-Qr for qemu-devel@nongnu.org; Tue, 05 Jan 2016 07:11:29 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id 8DB448F4F4 for ; Tue, 5 Jan 2016 12:11:29 +0000 (UTC) From: Gerd Hoffmann Date: Tue, 5 Jan 2016 13:11:22 +0100 Message-Id: <1451995883-28641-5-git-send-email-kraxel@redhat.com> In-Reply-To: <1451995883-28641-1-git-send-email-kraxel@redhat.com> References: <1451995883-28641-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 4/5] seabios: stop updating aml files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann ACPI aml files traditionally have been managed in the seabios repo. In qemu version 2.0 we've switched over to have qemu generate the acpi tables and provide them to the firmware via fw_cfg. The old aml files are still there and used for old machine types. Well, actually the q35 file only, the piix4 version is compiled into seabios (unless built with CONFIG_ACPI_DSDT=n) and is there for reference only. The aml files havn't been touched for a long time, and given that new features requiring acpi changes are typically only added to new machine types this is unlikely to change in the future. So stop updating them. That allows to cleanup things a bit on the seabios side in the future. Signed-off-by: Gerd Hoffmann --- roms/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/roms/Makefile b/roms/Makefile index 01f2701..7bd1252 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -64,7 +64,6 @@ default: bios: build-seabios-config-seabios-128k build-seabios-config-seabios-256k cp seabios/builds/seabios-128k/bios.bin ../pc-bios/bios.bin cp seabios/builds/seabios-256k/bios.bin ../pc-bios/bios-256k.bin - cp seabios/builds/seabios-256k/src/fw/*dsdt.aml ../pc-bios/ seavgabios: $(patsubst %,seavgabios-%,$(vgabios_variants)) -- 1.8.3.1