[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 4/4] hw/i386/pc: use PVH option rom
From: |
Stefano Garzarella |
Subject: |
[Qemu-devel] [PATCH 4/4] hw/i386/pc: use PVH option rom |
Date: |
Fri, 11 Jan 2019 14:18:36 +0100 |
Use pvh.bin option rom when we are booting an uncompressed
kernel using the x86/HVM direct boot ABI.
Signed-off-by: Stefano Garzarella <address@hidden>
Based-on: <address@hidden>
---
hw/i386/pc.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/hw/i386/pc.c b/hw/i386/pc.c
index 06bce6a101..deab8a2816 100644
--- a/hw/i386/pc.c
+++ b/hw/i386/pc.c
@@ -1005,6 +1005,10 @@ static void load_linux(PCMachineState *pcms,
fw_cfg_add_bytes(fw_cfg, FW_CFG_SETUP_DATA,
header, sizeof(header));
+ option_rom[nb_option_roms].bootindex = 0;
+ option_rom[nb_option_roms].name = "pvh.bin";
+ nb_option_roms++;
+
return;
}
/* This looks like a multiboot kernel. If it is, let's stop
--
2.20.1
- [Qemu-devel] [PATCH 2/4] linuxboot_dma: move common functions in a new header, (continued)
- [Qemu-devel] [PATCH 2/4] linuxboot_dma: move common functions in a new header, Stefano Garzarella, 2019/01/11
- Re: [Qemu-devel] [PATCH 2/4] linuxboot_dma: move common functions in a new header, Stefan Hajnoczi, 2019/01/11
- Re: [Qemu-devel] [PATCH 2/4] linuxboot_dma: move common functions in a new header, Stefano Garzarella, 2019/01/11
- Re: [Qemu-devel] [PATCH 2/4] linuxboot_dma: move common functions in a new header, Michael S. Tsirkin, 2019/01/11
- Re: [Qemu-devel] [PATCH 2/4] linuxboot_dma: move common functions in a new header, Eric Blake, 2019/01/11
- Re: [Qemu-devel] [PATCH 2/4] linuxboot_dma: move common functions in a new header, Stefano Garzarella, 2019/01/12
- Re: [Qemu-devel] [PATCH 2/4] linuxboot_dma: move common functions in a new header, Eric Blake, 2019/01/12
- Re: [Qemu-devel] [PATCH 2/4] linuxboot_dma: move common functions in a new header, Stefano Garzarella, 2019/01/12
[Qemu-devel] [PATCH 3/4] optionrom: add new PVH option rom, Stefano Garzarella, 2019/01/11
[Qemu-devel] [PATCH 4/4] hw/i386/pc: use PVH option rom,
Stefano Garzarella <=