On 12/9/22 10:55, David Woodhouse wrote:
config KVM bool + imply XEN_EMU if (I386 || X86_64)
No need for the "imply", just make it "default y" below and it will have the same effect.
diff --git a/target/Kconfig b/target/Kconfig index 83da0bd293..e19c9d77b5 100644 --- a/target/Kconfig +++ b/target/Kconfig @@ -18,3 +18,7 @@ source sh4/Kconfig source sparc/Kconfig source tricore/Kconfig source xtensa/Kconfig + +config XEN_EMU + bool + depends on KVM && (I386 || X86_64)
Please place it in hw/xen/Kconfig. Paolo