diff options
author | wdenk <wdenk> | 2005-04-02 23:52:25 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-04-02 23:52:25 +0000 |
commit | 400558b561e2bdb47f87b96b3510dda0881a3662 (patch) | |
tree | 479fa3918e0031a95cdac9468cb8396e1f1a9b60 /board/lart | |
parent | 414eec35e3832f4f9ce8a25ace7ead638be1f76f (diff) | |
download | talos-obmc-uboot-400558b561e2bdb47f87b96b3510dda0881a3662.tar.gz talos-obmc-uboot-400558b561e2bdb47f87b96b3510dda0881a3662.zip |
Prepare for SoC rework of ARM code:
- rename CONFIG_BOOTBINFUNC into CONFIG_INIT_CRITICAL
- rename memsetup into lowlevel_init (function name and source files)
Diffstat (limited to 'board/lart')
-rw-r--r-- | board/lart/Makefile | 2 | ||||
-rw-r--r-- | board/lart/lowlevel_init.S (renamed from board/lart/memsetup.S) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/board/lart/Makefile b/board/lart/Makefile index 42ceb03b7a..550aa1dac3 100644 --- a/board/lart/Makefile +++ b/board/lart/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a OBJS := lart.o flash.o -SOBJS := flashasm.o memsetup.o +SOBJS := flashasm.o lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $(OBJS) $(SOBJS) diff --git a/board/lart/memsetup.S b/board/lart/lowlevel_init.S index 635f2a001a..db9fd63def 100644 --- a/board/lart/memsetup.S +++ b/board/lart/lowlevel_init.S @@ -53,8 +53,8 @@ mecr: .long 0x00060006 /* setting up the memory */ -.globl memsetup -memsetup: +.globl lowlevel_init +lowlevel_init: ldr r0, MEM_BASE /* Setup the flash memory */ |