Re: [PATCH] xen/arm, xen/common: Add Kconfig option to control Dom0 boot

2025-07-23 Thread Oleksii Moisieiev
On 23/07/2025 18:04, Jan Beulich wrote: > On 23.07.2025 16:33, Oleksii Moisieiev wrote: >> Hi Jan, >> >> On 23/07/2025 17:27, Jan Beulich wrote: >>> On 23.07.2025 16:05, Oleksii Moisieiev wrote: --- a/xen/arch/arm/Kconfig +++ b/xen/arch/arm/Kconfig @@ -19,6 +19,7 @@ config ARM

Re: [PATCH] xen/arm, xen/common: Add Kconfig option to control Dom0 boot

2025-07-23 Thread Jan Beulich
On 23.07.2025 16:33, Oleksii Moisieiev wrote: > Hi Jan, > > On 23/07/2025 17:27, Jan Beulich wrote: >> On 23.07.2025 16:05, Oleksii Moisieiev wrote: >>> --- a/xen/arch/arm/Kconfig >>> +++ b/xen/arch/arm/Kconfig >>> @@ -19,6 +19,7 @@ config ARM >>> select HAS_ALTERNATIVE if HAS_VMAP >>> sel

Re: [PATCH] xen/arm, xen/common: Add Kconfig option to control Dom0 boot

2025-07-23 Thread Oleksii Moisieiev
Hi Jan, On 23/07/2025 17:27, Jan Beulich wrote: > On 23.07.2025 16:05, Oleksii Moisieiev wrote: >> --- a/xen/arch/arm/Kconfig >> +++ b/xen/arch/arm/Kconfig >> @@ -19,6 +19,7 @@ config ARM >> select HAS_ALTERNATIVE if HAS_VMAP >> select HAS_DEVICE_TREE >> select HAS_DOM0LESS >> +

Re: [PATCH] xen/arm, xen/common: Add Kconfig option to control Dom0 boot

2025-07-23 Thread Oleksii Moisieiev
Sorry, missed that on my send script On 23/07/2025 17:29, Jan Beulich wrote: > On 23.07.2025 16:05, Oleksii Moisieiev wrote: >> This commit introduces a new Kconfig option, `CONFIG_DOM0_BOOT`, to >> allow for building Xen without support for booting a regular domain (Dom0). >> This functionality i

Re: [PATCH] xen/arm, xen/common: Add Kconfig option to control Dom0 boot

2025-07-23 Thread Jan Beulich
On 23.07.2025 16:05, Oleksii Moisieiev wrote: > This commit introduces a new Kconfig option, `CONFIG_DOM0_BOOT`, to > allow for building Xen without support for booting a regular domain (Dom0). > This functionality is primarily intended for the ARM architecture. > > A new Kconfig symbol, `HAS_DOM0

Re: [PATCH] xen/arm, xen/common: Add Kconfig option to control Dom0 boot

2025-07-23 Thread Jan Beulich
On 23.07.2025 16:05, Oleksii Moisieiev wrote: > --- a/xen/arch/arm/Kconfig > +++ b/xen/arch/arm/Kconfig > @@ -19,6 +19,7 @@ config ARM > select HAS_ALTERNATIVE if HAS_VMAP > select HAS_DEVICE_TREE > select HAS_DOM0LESS > + select HAS_DOM0 This wants to move one line up, for t

[PATCH] xen/arm, xen/common: Add Kconfig option to control Dom0 boot

2025-07-23 Thread Oleksii Moisieiev
This commit introduces a new Kconfig option, `CONFIG_DOM0_BOOT`, to allow for building Xen without support for booting a regular domain (Dom0). This functionality is primarily intended for the ARM architecture. A new Kconfig symbol, `HAS_DOM0`, has been added and is selected by default for ARM arc