On 15.05.2024 11:08, Sergiy Kibrik wrote: > --- a/xen/arch/x86/Kconfig > +++ b/xen/arch/x86/Kconfig > @@ -358,6 +358,11 @@ config REQUIRE_NX > was unavailable. However, if enabled, Xen will no longer boot on > any CPU which is lacking NX support. > > +config ALTP2M > + bool "Alternate P2M support" > + def_bool y
Since you have "bool" already, here you mean "default". > + depends on VMX && EXPERT This doesn't look right. Typical distro builds will be with EXPERT=n. Such builds would suddenly end up without altp2m support then. What I think you mean is a conditional prompt. I.e. overall config ALTP2M bool "Alternate P2M support" if EXPERT default y depends on VMX help ... Jan