diff options
Diffstat (limited to 'board/etx094/u-boot.lds')
-rw-r--r-- | board/etx094/u-boot.lds | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/etx094/u-boot.lds b/board/etx094/u-boot.lds index 3d202e3..c50db8f 100644 --- a/board/etx094/u-boot.lds +++ b/board/etx094/u-boot.lds @@ -79,6 +79,7 @@ SECTIONS *(.rodata) *(.rodata1) *(.rodata.str1.4) + *(.eh_frame) } .fini : { *(.fini) } =0 .ctors : { *(.ctors) } @@ -111,11 +112,13 @@ SECTIONS _edata = .; PROVIDE (edata = .); + . = .; __u_boot_cmd_start = .; .u_boot_cmd : { *(.u_boot_cmd) } __u_boot_cmd_end = .; + . = .; __start___ex_table = .; __ex_table : { *(__ex_table) } __stop___ex_table = .; |