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/sx1 | |
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/sx1')
-rw-r--r-- | board/sx1/Makefile | 2 | ||||
-rw-r--r-- | board/sx1/lowlevel_init.S (renamed from board/sx1/platform.S) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/board/sx1/Makefile b/board/sx1/Makefile index 8cd02d1411b..8fbdf2a5e33 100644 --- a/board/sx1/Makefile +++ b/board/sx1/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a OBJS := sx1.o -SOBJS := platform.o +SOBJS := lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $^ diff --git a/board/sx1/platform.S b/board/sx1/lowlevel_init.S index bd54df18c44..bdf812e05af 100644 --- a/board/sx1/platform.S +++ b/board/sx1/lowlevel_init.S @@ -39,8 +39,8 @@ _TEXT_BASE: .word TEXT_BASE /* sdram load addr from config.mk */ -.globl platformsetup -platformsetup: +.globl lowlevel_init +lowlevel_init: /* * Configure 1510 pins functions to match our board. |