diff options
author | Niklaus Giger <niklaus.giger@netstal.com> | 2008-01-16 18:39:20 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2008-01-17 13:52:00 +0100 |
commit | 055606bd25e88c0cd04ad348a679a04b1b616bee (patch) | |
tree | 23f3f0c9c4a30c3ae9bccad75315897ea3fb1912 /board/netstal/hcu4/Makefile | |
parent | 69b0634a4ee98c9791815600d43b99f626a952f3 (diff) | |
download | u-boot-imx-055606bd25e88c0cd04ad348a679a04b1b616bee.zip u-boot-imx-055606bd25e88c0cd04ad348a679a04b1b616bee.tar.gz u-boot-imx-055606bd25e88c0cd04ad348a679a04b1b616bee.tar.bz2 |
ppc4xx: Netstal HCU4 board: added various fixes and POST
- Moved some common code to netstal/common/nm_bsp.c.
- sdram initialisation goes go netstal/common/fixed_sdram.c.
- Added support for POST.
- Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
Diffstat (limited to 'board/netstal/hcu4/Makefile')
-rw-r--r-- | board/netstal/hcu4/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/netstal/hcu4/Makefile b/board/netstal/hcu4/Makefile index af90821..c0d719f 100644 --- a/board/netstal/hcu4/Makefile +++ b/board/netstal/hcu4/Makefile @@ -22,10 +22,12 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).a +vpath fixed_sdram.c ../common vpath hcu_flash.c ../common +vpath nm_bsp.c ../common # NOBJS : Netstal common objects -NOBJS = hcu_flash.o +NOBJS = fixed_sdram.o hcu_flash.o nm_bsp.o COBJS = $(BOARD).o SOBJS = |