diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-06 17:08:18 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-06 17:08:18 +0200 |
commit | 87cb6862b94e342d6c99467e0dbb0d4f625cc7ef (patch) | |
tree | 82c6530f0de6cc1e224cdc17458ab6a503cf072f /board/ns9750dev | |
parent | bccae9039e59ac09a776429119389a6a4e679fd7 (diff) |
Update make target for ARM supported boards.
Use lowlevel_init() instead of platformsetup() [rename].
Patch by Peter Pearse, 06 Oct 2005
Diffstat (limited to 'board/ns9750dev')
-rw-r--r-- | board/ns9750dev/Makefile | 2 | ||||
-rw-r--r-- | board/ns9750dev/lowlevel_init.S (renamed from board/ns9750dev/platform.S) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/board/ns9750dev/Makefile b/board/ns9750dev/Makefile index d2718cc683a..fb4333c19c0 100644 --- a/board/ns9750dev/Makefile +++ b/board/ns9750dev/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a OBJS := ns9750dev.o flash.o led.o -SOBJS := platform.o +SOBJS := lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $(OBJS) $(SOBJS) diff --git a/board/ns9750dev/platform.S b/board/ns9750dev/lowlevel_init.S index afcad154082..3a0978663a7 100644 --- a/board/ns9750dev/platform.S +++ b/board/ns9750dev/lowlevel_init.S @@ -75,8 +75,8 @@ _CAS_LATENCY: .word 0x00022000 @ for CAS2 latency #ifndef CONFIG_SKIP_LOWLEVEL_INIT -.globl platformsetup -platformsetup: +.globl lowlevel_init +lowlevel_init: /* U-Boot may be linked to RAM at 0x780000. But this code will run in flash from 0x0. But in order to enable RAM we have to disable the |