Re: [RFC PATCH 4/5] bootefi: Call the EVT_FT_FIXUP event handler

2023-08-28 Thread Simon Glass
Hi Heinrich, On Mon, 28 Aug 2023 at 05:02, Heinrich Schuchardt wrote: > > On 28.08.23 11:32, Sughosh Ganu wrote: > > On Sat, 26 Aug 2023 at 15:57, Heinrich Schuchardt > > wrote: > >> > >> On 8/26/23 11:06, Sughosh Ganu wrote: > >>> The bootefi command passes the devicetree to the kernel through

Re: [RFC PATCH 4/5] bootefi: Call the EVT_FT_FIXUP event handler

2023-08-28 Thread Heinrich Schuchardt
On 28.08.23 11:32, Sughosh Ganu wrote: On Sat, 26 Aug 2023 at 15:57, Heinrich Schuchardt wrote: On 8/26/23 11:06, Sughosh Ganu wrote: The bootefi command passes the devicetree to the kernel through the EFI config table. Call the event handlers for fixing the devicetree before jumping into the

Re: [RFC PATCH 4/5] bootefi: Call the EVT_FT_FIXUP event handler

2023-08-28 Thread Sughosh Ganu
On Sat, 26 Aug 2023 at 15:57, Heinrich Schuchardt wrote: > > On 8/26/23 11:06, Sughosh Ganu wrote: > > The bootefi command passes the devicetree to the kernel through the > > EFI config table. Call the event handlers for fixing the devicetree > > before jumping into the kernel. This removes any de

Re: [RFC PATCH 4/5] bootefi: Call the EVT_FT_FIXUP event handler

2023-08-26 Thread Heinrich Schuchardt
On 8/26/23 11:06, Sughosh Ganu wrote: The bootefi command passes the devicetree to the kernel through the EFI config table. Call the event handlers for fixing the devicetree before jumping into the kernel. This removes any devicetree nodes and/or properties that are specific only to U-Boot, and a

[RFC PATCH 4/5] bootefi: Call the EVT_FT_FIXUP event handler

2023-08-26 Thread Sughosh Ganu
The bootefi command passes the devicetree to the kernel through the EFI config table. Call the event handlers for fixing the devicetree before jumping into the kernel. This removes any devicetree nodes and/or properties that are specific only to U-Boot, and are not to be passed to the OS. Signed-o