On 3/13/24 06:23, Ilias Apalodimas wrote:
+++ b/arch/arm/cpu/armv8/u-boot-spl.lds
@@ -63,18 +63,11 @@ SECTIONS
_image_binary_end = .; - .bss_start (NOLOAD) : {
-               . = ALIGN(8);
-               KEEP(*(.__bss_start));
-       } >.sdram
-
-       .bss (NOLOAD) : {
+       .bss : {
+               __bss_start = .;
                *(.bss*)
-                . = ALIGN(8);
-       } >.sdram
-
-       .bss_end (NOLOAD) : {
-               KEEP(*(.__bss_end));
+               . = ALIGN(8);
+               __bss_end = .;

Still missing the alignment on .bss, previously in .bss_start.

With that fixed,
Reviewed-by: Richard Henderson <richard.hender...@linaro.org>

r~

Reply via email to