diff options
author | Sergio Lopez | 2019-10-02 08:03:19 +0200 |
---|---|---|
committer | Paolo Bonzini | 2019-10-22 09:39:54 +0200 |
commit | 0ebf007ddacf15a4483a4e740bf6c9dd688b5b5a (patch) | |
tree | d31bb03da63a1956c04d4db1a27dfaaf39a320ab /hw/i386/Kconfig | |
parent | docs/microvm.rst: document the new microvm machine type (diff) | |
download | qemu-0ebf007ddacf15a4483a4e740bf6c9dd688b5b5a.tar.gz qemu-0ebf007ddacf15a4483a4e740bf6c9dd688b5b5a.tar.xz qemu-0ebf007ddacf15a4483a4e740bf6c9dd688b5b5a.zip |
hw/i386: Introduce the microvm machine type
microvm is a machine type inspired by Firecracker and constructed
after its machine model.
It's a minimalist machine type without PCI nor ACPI support, designed
for short-lived guests. microvm also establishes a baseline for
benchmarking and optimizing both QEMU and guest operating systems,
since it is optimized for both boot time and footprint.
Signed-off-by: Sergio Lopez <slp@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/i386/Kconfig')
-rw-r--r-- | hw/i386/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hw/i386/Kconfig b/hw/i386/Kconfig index c5c9d4900e..b25bb6d78a 100644 --- a/hw/i386/Kconfig +++ b/hw/i386/Kconfig @@ -92,6 +92,16 @@ config Q35 select SMBIOS select FW_CFG_DMA +config MICROVM + bool + imply SERIAL_ISA + select ISA_BUS + select APIC + select IOAPIC + select I8259 + select MC146818RTC + select VIRTIO_MMIO + config VTD bool |