mirror of
https://github.com/xemu-project/xemu.git
synced 2026-07-11 01:24:41 +02:00
c5f23bccde
Create the MSHV virtual machine by opening a partition and issuing the necessary ioctl to initialize it. This sets up the basic VM structure and initial configuration used by MSHV to manage guest state. Signed-off-by: Magnus Kulke <magnuskulke@linux.microsoft.com> Link: https://lore.kernel.org/r/20250916164847.77883-10-magnuskulke@linux.microsoft.com [Add stubs; fix format strings for trace-events; make mshv_hvcall available only in per-target files; mshv.h/mshv_int.h split. - Paolo] Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
9 lines
154 B
Meson
9 lines
154 B
Meson
i386_mshv_ss = ss.source_set()
|
|
|
|
i386_mshv_ss.add(files(
|
|
'mshv-cpu.c',
|
|
'x86.c',
|
|
))
|
|
|
|
i386_system_ss.add_all(when: 'CONFIG_MSHV', if_true: i386_mshv_ss)
|