mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 22:14:54 +00:00
aspeed/ast2600: Fix SPL linker script
The commit99e2fbcb69
("linker_lists: Rename sections to remove . prefix") changed the name of the linker list sections. As the Aspeed SPL linker wasn't in the tree yet, it missed the change. This updates the SPL linker to match arch/arm/cpu/u-boot-spl.lds which Aspeed was copied from. Fixes:442a69c143
("configs: ast2600: Move SPL bss section to DRAM space") Signed-off-by: Joel Stanley <joel@jms.id.au>
This commit is contained in:
parent
c0f4756216
commit
f6810b749f
1 changed files with 3 additions and 3 deletions
|
@ -40,8 +40,8 @@ SECTIONS
|
||||||
} > .nor
|
} > .nor
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.u_boot_list : {
|
__u_boot_list : {
|
||||||
KEEP(*(SORT(.u_boot_list*)));
|
KEEP(*(SORT(__u_boot_list*)));
|
||||||
} > .nor
|
} > .nor
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
|
@ -68,7 +68,7 @@ SECTIONS
|
||||||
|
|
||||||
_image_binary_end = .;
|
_image_binary_end = .;
|
||||||
|
|
||||||
.bss : {
|
.bss __rel_dyn_start (OVERLAY) : {
|
||||||
__bss_start = .;
|
__bss_start = .;
|
||||||
*(.bss*)
|
*(.bss*)
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
|
|
Loading…
Add table
Reference in a new issue