diff options
Diffstat (limited to 'board/atc')
| -rw-r--r-- | board/atc/flash.c | 2 | ||||
| -rw-r--r-- | board/atc/u-boot.lds | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/board/atc/flash.c b/board/atc/flash.c index 26b7c80d3..2ab60e866 100644 --- a/board/atc/flash.c +++ b/board/atc/flash.c @@ -181,7 +181,7 @@ void flash_print_info (flash_info_t *info) int i; uchar *boottype; uchar *bootletter; - uchar *fmt; + char *fmt; uchar botbootletter[] = "B"; uchar topbootletter[] = "T"; uchar botboottype[] = "bottom boot sector"; diff --git a/board/atc/u-boot.lds b/board/atc/u-boot.lds index 7ac29a0fb..eee83d099 100644 --- a/board/atc/u-boot.lds +++ b/board/atc/u-boot.lds @@ -62,6 +62,7 @@ SECTIONS *(.rodata) *(.rodata1) *(.rodata.str1.4) + *(.eh_frame) } .fini : { *(.fini) } =0 .ctors : { *(.ctors) } @@ -94,10 +95,12 @@ 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 = .; |