diff options
Diffstat (limited to 'board/dvlhost/u-boot.lds')
-rw-r--r-- | board/dvlhost/u-boot.lds | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/board/dvlhost/u-boot.lds b/board/dvlhost/u-boot.lds index ee7219f..f359112 100644 --- a/board/dvlhost/u-boot.lds +++ b/board/dvlhost/u-boot.lds @@ -68,10 +68,18 @@ SECTIONS *(.__image_copy_end) } + .rel_dyn_start : + { + *(.__rel_dyn_start) + } + .rel.dyn : { - __rel_dyn_start = .; *(.rel*) - __rel_dyn_end = .; + } + + .rel_dyn_end : + { + *(.__rel_dyn_end) } _end = .; |