diff options
Diffstat (limited to 'board/omap730p2')
-rw-r--r-- | board/omap730p2/Makefile | 2 | ||||
-rw-r--r-- | board/omap730p2/lowlevel_init.S (renamed from board/omap730p2/platform.S) | 4 | ||||
-rw-r--r-- | board/omap730p2/u-boot.lds | 1 |
3 files changed, 4 insertions, 3 deletions
diff --git a/board/omap730p2/Makefile b/board/omap730p2/Makefile index 1058508..29467ac 100644 --- a/board/omap730p2/Makefile +++ b/board/omap730p2/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a OBJS := omap730p2.o flash.o -SOBJS := platform.o +SOBJS := lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $^ diff --git a/board/omap730p2/platform.S b/board/omap730p2/lowlevel_init.S index f30c242..6c6f482 100644 --- a/board/omap730p2/platform.S +++ b/board/omap730p2/lowlevel_init.S @@ -43,8 +43,8 @@ _TEXT_BASE: .word TEXT_BASE /* sdram load addr from config.mk */ -.globl platformsetup -platformsetup: +.globl lowlevel_init +lowlevel_init: /* Save callers address in r11 - r11 must never be modified */ mov r11, lr diff --git a/board/omap730p2/u-boot.lds b/board/omap730p2/u-boot.lds index eee4813..710b2a2 100644 --- a/board/omap730p2/u-boot.lds +++ b/board/omap730p2/u-boot.lds @@ -40,6 +40,7 @@ SECTIONS . = ALIGN(4); .got : { *(.got) } + . = .; __u_boot_cmd_start = .; .u_boot_cmd : { *(.u_boot_cmd) } __u_boot_cmd_end = .; |