diff options
author | Stefan Roese <sr@denx.de> | 2009-07-21 14:06:29 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2009-07-24 09:56:40 +0200 |
commit | 4b1389e0ceb19e9b50b96fd3908483a6c2274fb0 (patch) | |
tree | eb419abb0a9d302891508cadcc292f501864d1e9 /board/amcc/kilauea/Makefile | |
parent | f6af8ce0c80327cb6aaa347642026ad838335c23 (diff) | |
download | u-boot-imx-4b1389e0ceb19e9b50b96fd3908483a6c2274fb0.zip u-boot-imx-4b1389e0ceb19e9b50b96fd3908483a6c2274fb0.tar.gz u-boot-imx-4b1389e0ceb19e9b50b96fd3908483a6c2274fb0.tar.bz2 |
ppc4xx: Add chip_config command to AMCC Kilauea eval board
This patch removes the "alterpll" command and replaces it with the now
ppc4xx standard "chip_config" command to configure the I2C bootstrap
EEPROM.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc/kilauea/Makefile')
-rw-r--r-- | board/amcc/kilauea/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/amcc/kilauea/Makefile b/board/amcc/kilauea/Makefile index df0a68f..751e9f3 100644 --- a/board/amcc/kilauea/Makefile +++ b/board/amcc/kilauea/Makefile @@ -25,8 +25,10 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).a -COBJS = $(BOARD).o cmd_pll.o +COBJS-y := $(BOARD).o +COBJS-$(CONFIG_CMD_CHIP_CONFIG) += chip_config.o +COBJS := $(COBJS-y) SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |