Re: [PATCH 1/2] xen/efi: Restrict check for DT boot modules on EFI boot

2021-09-16 Thread Luca Fancellu
> On 16 Sep 2021, at 01:16, Stefano Stabellini wrote: > > Adding Jan for an opinion on the EFI common code changes. See below. > > > On Wed, 15 Sep 2021, Luca Fancellu wrote: >> When Xen is started as EFI application, it is checking >> the presence of multiboot,module in the DT, if any is

Re: [PATCH 1/2] xen/efi: Restrict check for DT boot modules on EFI boot

2021-09-16 Thread Jan Beulich
On 16.09.2021 02:16, Stefano Stabellini wrote: > So I am thinking that we have no choice but introducing a new property > to tell us whether we should or should not load xen.cfg when > multiboot,modules are present. > > Taking inspiration from HyperLaunch, it could be a new node: > > chosen { >

Re: [PATCH 1/2] xen/efi: Restrict check for DT boot modules on EFI boot

2021-09-15 Thread Stefano Stabellini
Adding Jan for an opinion on the EFI common code changes. See below. On Wed, 15 Sep 2021, Luca Fancellu wrote: > When Xen is started as EFI application, it is checking > the presence of multiboot,module in the DT, if any is > found, the configuration file is skipped. > Restrict this check to

[PATCH 1/2] xen/efi: Restrict check for DT boot modules on EFI boot

2021-09-15 Thread Luca Fancellu
When Xen is started as EFI application, it is checking the presence of multiboot,module in the DT, if any is found, the configuration file is skipped. Restrict this check to just any multiboot,module that is a direct child of the /chosen node. Signed-off-by: Luca Fancellu ---