diff options
Diffstat (limited to 'board/evb4510')
-rw-r--r-- | board/evb4510/Makefile | 2 | ||||
-rw-r--r-- | board/evb4510/lowlevel_init.S (renamed from board/evb4510/memsetup.S) | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/board/evb4510/Makefile b/board/evb4510/Makefile index 1ab4dfb..10850a9 100644 --- a/board/evb4510/Makefile +++ b/board/evb4510/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a OBJS := evb4510.o flash.o -SOBJS := memsetup.o +SOBJS := lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $^ diff --git a/board/evb4510/memsetup.S b/board/evb4510/lowlevel_init.S index 915af1e..7184d72 100644 --- a/board/evb4510/memsetup.S +++ b/board/evb4510/lowlevel_init.S @@ -31,7 +31,7 @@ * * This memory map allows us to relocate from FLASH to SRAM. After * power-on reset the CPU only knows about the FLASH memory at address - * 0x00000000. After memsetup completes the memory map will be: + * 0x00000000. After lowlevel_init completes the memory map will be: * * Memory Addr * 0x00000000 @@ -54,8 +54,8 @@ * ***********************************************************************/ -.globl memsetup -memsetup: +.globl lowlevel_init +lowlevel_init: /* preserve the temp register (r12 AKA ip) and remap it. */ ldr r1, =SRAM_BASE+0xC |