diff options
Diffstat (limited to 'board/rmu')
-rw-r--r-- | board/rmu/Makefile | 2 | ||||
-rw-r--r-- | board/rmu/u-boot.lds | 6 | ||||
-rw-r--r-- | board/rmu/u-boot.lds.debug | 1 |
3 files changed, 6 insertions, 3 deletions
diff --git a/board/rmu/Makefile b/board/rmu/Makefile index ef173d036..13ce9fc9d 100644 --- a/board/rmu/Makefile +++ b/board/rmu/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/rmu/u-boot.lds b/board/rmu/u-boot.lds index a31c362f2..082d8b07c 100644 --- a/board/rmu/u-boot.lds +++ b/board/rmu/u-boot.lds @@ -110,6 +110,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 = .; @@ -132,4 +137,3 @@ SECTIONS _end = . ; PROVIDE (end = .); } - diff --git a/board/rmu/u-boot.lds.debug b/board/rmu/u-boot.lds.debug index 22138f8aa..f34c2a439 100644 --- a/board/rmu/u-boot.lds.debug +++ b/board/rmu/u-boot.lds.debug @@ -128,4 +128,3 @@ SECTIONS _end = . ; PROVIDE (end = .); } - |