Re: [PATCH 5/6] arm: fix __efi_runtime_start/end definitions

2024-03-08 Thread Ilias Apalodimas
On Fri, 8 Mar 2024 at 16:14, Ilias Apalodimas wrote: > > On Fri, 8 Mar 2024 at 15:22, Ilias Apalodimas > wrote: > > > > Hi Sam, > > > > On Thu, 7 Mar 2024 at 08:50, Ilias Apalodimas > > wrote: > > > > > > > > > > > > On Thu, 7 Mar 2024 at 00:19, Sam Edwards wrote: > > >> > > >> > > >> > > >>

Re: [PATCH 5/6] arm: fix __efi_runtime_start/end definitions

2024-03-08 Thread Ilias Apalodimas
On Fri, 8 Mar 2024 at 15:22, Ilias Apalodimas wrote: > > Hi Sam, > > On Thu, 7 Mar 2024 at 08:50, Ilias Apalodimas > wrote: > > > > > > > > On Thu, 7 Mar 2024 at 00:19, Sam Edwards wrote: > >> > >> > >> > >> On 3/6/24 02:13, Ilias Apalodimas wrote: > >> > Hi Sam, > >> > > >> > Again thank you

Re: [PATCH 5/6] arm: fix __efi_runtime_start/end definitions

2024-03-08 Thread Ilias Apalodimas
Hi Sam, On Thu, 7 Mar 2024 at 08:50, Ilias Apalodimas wrote: > > > > On Thu, 7 Mar 2024 at 00:19, Sam Edwards wrote: >> >> >> >> On 3/6/24 02:13, Ilias Apalodimas wrote: >> > Hi Sam, >> > >> > Again thank you for the elaborate review. This really helps a lot. >> > >> > On Wed, 6 Mar 2024 at

Re: [PATCH 5/6] arm: fix __efi_runtime_start/end definitions

2024-03-06 Thread Ilias Apalodimas
On Thu, 7 Mar 2024 at 00:19, Sam Edwards wrote: > > > On 3/6/24 02:13, Ilias Apalodimas wrote: > > Hi Sam, > > > > Again thank you for the elaborate review. This really helps a lot. > > > > On Wed, 6 Mar 2024 at 10:14, Sam Edwards wrote: > >> > >> > >> > >> On 3/4/24 02:01, Ilias Apalodimas

Re: [PATCH 5/6] arm: fix __efi_runtime_start/end definitions

2024-03-06 Thread Sam Edwards
On 3/6/24 02:13, Ilias Apalodimas wrote: Hi Sam, Again thank you for the elaborate review. This really helps a lot. On Wed, 6 Mar 2024 at 10:14, Sam Edwards wrote: On 3/4/24 02:01, Ilias Apalodimas wrote: __efi_runtime_start/end are defined as c variables for arm7 only in order to

Re: [PATCH 5/6] arm: fix __efi_runtime_start/end definitions

2024-03-06 Thread Ilias Apalodimas
Hi Sam, Again thank you for the elaborate review. This really helps a lot. On Wed, 6 Mar 2024 at 10:14, Sam Edwards wrote: > > > > On 3/4/24 02:01, Ilias Apalodimas wrote: > > __efi_runtime_start/end are defined as c variables for arm7 only in > > order to force the compiler emit relative

Re: [PATCH 5/6] arm: fix __efi_runtime_start/end definitions

2024-03-06 Thread Sam Edwards
On 3/4/24 02:01, Ilias Apalodimas wrote: __efi_runtime_start/end are defined as c variables for arm7 only in order to force the compiler emit relative references. However, defining those within a section definition will do the same thing. On top of that the v8 linker scripts define it as a

[PATCH 5/6] arm: fix __efi_runtime_start/end definitions

2024-03-04 Thread Ilias Apalodimas
__efi_runtime_start/end are defined as c variables for arm7 only in order to force the compiler emit relative references. However, defining those within a section definition will do the same thing. On top of that the v8 linker scripts define it as a symbol. So let's remove the special sections

[RFC PATCH 5/6] arm: fix __efi_runtime_start/end definitions

2024-02-28 Thread Ilias Apalodimas
__efi_runtime_start/end are defined as c variables for arm7 only in order to force the compiler emit relative references. However, defining those within a section definition will do the same thing. On top of that the v8 linker scripts define it as a symbol. So let's remove the special sections