From 5ed0035377d62da7d33072f10ea04ede27422455 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 14 Jul 2022 14:41:03 +0200 Subject: bsps: Sort .noinit* sections Sort the .noinit* input sections by name first, then by alignment if two sections have the same name. This allows the placement of begin/end symbols to initialize some areas with a special value. Update #4678. --- bsps/powerpc/gen5200/start/linkcmds.gen5200_base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bsps/powerpc/gen5200/start/linkcmds.gen5200_base') diff --git a/bsps/powerpc/gen5200/start/linkcmds.gen5200_base b/bsps/powerpc/gen5200/start/linkcmds.gen5200_base index bfa38939b8..ecf33f3fe2 100644 --- a/bsps/powerpc/gen5200/start/linkcmds.gen5200_base +++ b/bsps/powerpc/gen5200/start/linkcmds.gen5200_base @@ -296,7 +296,7 @@ SECTIONS { bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_start; .noinit (NOLOAD) : { - *(.noinit*) + *(SORT_BY_NAME (SORT_BY_ALIGNMENT (.noinit*))) } > RAM .rtemsstack (NOLOAD) : { -- cgit v1.2.3