diff options
Diffstat (limited to 'board/icu862')
-rw-r--r-- | board/icu862/Makefile | 2 | ||||
-rw-r--r-- | board/icu862/u-boot.lds | 6 | ||||
-rw-r--r-- | board/icu862/u-boot.lds.debug | 6 |
3 files changed, 11 insertions, 3 deletions
diff --git a/board/icu862/Makefile b/board/icu862/Makefile index 35b8428..7a2014d 100644 --- a/board/icu862/Makefile +++ b/board/icu862/Makefile @@ -28,7 +28,7 @@ LIB = lib$(BOARD).a OBJS = $(BOARD).o flash.o $(LIB): .depend $(OBJS) - $(AR) crv $@ $^ + $(AR) crv $@ $(OBJS) ######################################################################### diff --git a/board/icu862/u-boot.lds b/board/icu862/u-boot.lds index e14520b..496c598 100644 --- a/board/icu862/u-boot.lds +++ b/board/icu862/u-boot.lds @@ -112,6 +112,11 @@ 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 = .; @@ -139,4 +144,3 @@ SECTIONS _end = . ; PROVIDE (end = .); } - diff --git a/board/icu862/u-boot.lds.debug b/board/icu862/u-boot.lds.debug index 2365116..7b84fd3 100644 --- a/board/icu862/u-boot.lds.debug +++ b/board/icu862/u-boot.lds.debug @@ -107,6 +107,11 @@ 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 = .; @@ -129,4 +134,3 @@ SECTIONS _end = . ; PROVIDE (end = .); } - |