diff options
author | Stefan Roese <sr@denx.de> | 2009-11-09 14:15:42 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2009-11-10 15:09:37 +0100 |
commit | efe12bcec55c3d77b9ead56e62010d26b66781f3 (patch) | |
tree | 1057b2d6723df6164512f9f91b4b4685a8a8051a /board/amcc/katmai/Makefile | |
parent | cdaed5dc31f4023610f180fe158ec8c6f5e855a3 (diff) | |
download | u-boot-imx-efe12bcec55c3d77b9ead56e62010d26b66781f3.zip u-boot-imx-efe12bcec55c3d77b9ead56e62010d26b66781f3.tar.gz u-boot-imx-efe12bcec55c3d77b9ead56e62010d26b66781f3.tar.bz2 |
ppc4xx: Katmai: Add chip_config command
This patch removes the Katmai "bootstrap" command and replaces it
with the now common command "chip_config".
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc/katmai/Makefile')
-rw-r--r-- | board/amcc/katmai/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/amcc/katmai/Makefile b/board/amcc/katmai/Makefile index 318016d..168bab5 100644 --- a/board/amcc/katmai/Makefile +++ b/board/amcc/katmai/Makefile @@ -25,9 +25,11 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).a -COBJS = $(BOARD).o cmd_katmai.o +COBJS-y := $(BOARD).o +COBJS-$(CONFIG_CMD_CHIP_CONFIG) += chip_config.o SOBJS = init.o +COBJS := $(COBJS-y) SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) SOBJS := $(addprefix $(obj),$(SOBJS)) |