From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:50440) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RC4Sf-0004om-4b for qemu-devel@nongnu.org; Fri, 07 Oct 2011 03:03:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RC4Sb-0001HQ-4E for qemu-devel@nongnu.org; Fri, 07 Oct 2011 03:03:13 -0400 Received: from thoth.sbs.de ([192.35.17.2]:24594) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RC4Sa-0001GV-S0 for qemu-devel@nongnu.org; Fri, 07 Oct 2011 03:03:09 -0400 Message-ID: <4E8EA428.9020509@siemens.com> Date: Fri, 07 Oct 2011 09:03:04 +0200 From: Jan Kiszka MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] qemu-kvm: Restore VAPIC option ROM installation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Marcelo Tosatti , Avi Kivity Cc: qemu-devel Still needed but was accidentally removed by 8bc62bc6be. Signed-off-by: Jan Kiszka --- As the guilty patch is only in next so far, you may also fold this one in. hw/pc.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index a616029..70e0d08 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -1049,6 +1049,10 @@ void pc_memory_init(MemoryRegion *system_memory, (uint32_t)(-bios_size), bios); + option_rom[nb_option_roms].name = g_strdup(VAPIC_FILENAME); + option_rom[nb_option_roms].bootindex = -1; + nb_option_roms++; + fw_cfg = bochs_bios_init(); rom_set_fw(fw_cfg); -- 1.7.3.4