diff options
Diffstat (limited to 'board/gw8260/u-boot.lds')
-rw-r--r-- | board/gw8260/u-boot.lds | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/gw8260/u-boot.lds b/board/gw8260/u-boot.lds index 32e8f39..ab65cb1 100644 --- a/board/gw8260/u-boot.lds +++ b/board/gw8260/u-boot.lds @@ -61,6 +61,7 @@ SECTIONS *(.rodata) *(.rodata1) *(.rodata.str1.4) + *(.eh_frame) } .fini : { *(.fini) } =0 .ctors : { *(.ctors) } @@ -93,11 +94,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 = .; |