cb035a7bf2
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>
13 lines
251 B
Meson
13 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',
|
|
))
|