From: Kyungmin Park Date: Tue, 12 Jan 2010 08:33:21 +0000 (+0900) Subject: s5pc110: aquila: Don't include modem code X-Git-Tag: JA03_20100114~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aaad7e2c9de4b4193c8e5ceed5432c80f7e0fc3c;p=kernel%2Fu-boot.git s5pc110: aquila: Don't include modem code It's only used for debugging Signed-off-by: Kyungmin Park --- diff --git a/board/samsung/universal/Makefile b/board/samsung/universal/Makefile index f29b2d0..4f0f096 100644 --- a/board/samsung/universal/Makefile +++ b/board/samsung/universal/Makefile @@ -25,9 +25,11 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).a -COBJS-y := universal.o onenand.o modem_boot.o +COBJS-y := universal.o onenand.o SOBJS := lowlevel_init.o +COBJS-$(CONFIG_S5PC110_MODEM) += modem_boot.o + SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c) OBJS := $(addprefix $(obj),$(COBJS-y)) SOBJS := $(addprefix $(obj),$(SOBJS))