summaryrefslogtreecommitdiffstats
path: root/board/dvlhost/u-boot.lds
diff options
context:
space:
mode:
Diffstat (limited to 'board/dvlhost/u-boot.lds')
-rw-r--r--board/dvlhost/u-boot.lds18
1 files changed, 13 insertions, 5 deletions
diff --git a/board/dvlhost/u-boot.lds b/board/dvlhost/u-boot.lds
index ed910033d5..b13d3e1ec3 100644
--- a/board/dvlhost/u-boot.lds
+++ b/board/dvlhost/u-boot.lds
@@ -57,7 +57,7 @@ SECTIONS
. = ALIGN(4);
.u_boot_list : {
- #include <u-boot.lst>
+ KEEP(*(SORT(.u_boot_list*)));
}
. = ALIGN (4);
@@ -72,13 +72,21 @@ SECTIONS
*(.dynsym)
}
- .bss __rel_dyn_start (OVERLAY) : {
- __bss_start = .;
+ _end = .;
+
+ .bss_start __rel_dyn_start (OVERLAY) : {
+ KEEP(*(.__bss_start));
+ }
+
+ .bss __bss_start (OVERLAY) : {
*(.bss*)
. = ALIGN(4);
- _end = .;
+ __bss_end = .;
}
- __bss_end =.;
+ .bss_end __bss_end (OVERLAY) : {
+ KEEP(*(__bss_end));
+ }
+
/DISCARD/ : { *(.dynstr*) }
/DISCARD/ : { *(.dynamic*) }
/DISCARD/ : { *(.plt*) }
OpenPOWER on IntegriCloud