mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 20:33:54 -06:00

Add a Xen PVH x86 machine based on the abstract PVH Machine. Signed-off-by: Edgar E. Iglesias <edgar.iglesias@amd.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
12 lines
251 B
Meson
12 lines
251 B
Meson
i386_ss.add(when: 'CONFIG_XEN', if_true: files(
|
|
'xen_apic.c',
|
|
'xen_pvdevice.c',
|
|
))
|
|
i386_ss.add(when: ['CONFIG_XEN', xen], if_true: files(
|
|
'xen-hvm.c',
|
|
'xen-pvh.c',
|
|
))
|
|
|
|
i386_ss.add(when: 'CONFIG_XEN_BUS', if_true: files(
|
|
'xen_platform.c',
|
|
))
|