Re: [PATCH 01/11] sandbox: Set the EFI symbols in linker script

2022-04-11 Thread Andrew Scull
On Mon, 11 Apr 2022 at 23:15, Heinrich Schuchardt wrote: > > On 4/7/22 11:41, Andrew Scull wrote: > > The sandbox doesn't populate the EFI lists so explicitly set the list > > start and end symbols to indicate that the lists are empty. This > > simplifies the linker scripts, removed references to

Re: [PATCH 01/11] sandbox: Set the EFI symbols in linker script

2022-04-11 Thread Heinrich Schuchardt
On 4/7/22 11:41, Andrew Scull wrote: The sandbox doesn't populate the EFI lists so explicitly set the list start and end symbols to indicate that the lists are empty. This simplifies the linker scripts, removed references to non-existant sections and removes '.' prefixed sections that conflicted

Re: [PATCH 01/11] sandbox: Set the EFI symbols in linker script

2022-04-11 Thread Simon Glass
Hi Andrew, On Thu, 7 Apr 2022 at 03:41, Andrew Scull wrote: > > The sandbox doesn't populate the EFI lists so explicitly set the list > start and end symbols to indicate that the lists are empty. This > simplifies the linker scripts, removed references to non-existant > sections and removes '.' p

[PATCH 01/11] sandbox: Set the EFI symbols in linker script

2022-04-07 Thread Andrew Scull
The sandbox doesn't populate the EFI lists so explicitly set the list start and end symbols to indicate that the lists are empty. This simplifies the linker scripts, removed references to non-existant sections and removes '.' prefixed sections that conflicted with clang's ASAN. Signed-off-by: Andr