aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Vasut2012-09-14 16:20:05 -0500
committerTom Rini2012-10-15 13:53:58 -0500
commit82dda962f0a6449672df3378bb6b5fe54372a927 (patch)
treef2c351aefd33802811175a166f256cf0f79de2bb /config.mk
parent7742aa65a89c28577e9674d688c34cf865587076 (diff)
downloadu-boot-82dda962f0a6449672df3378bb6b5fe54372a927.tar.gz
u-boot-82dda962f0a6449672df3378bb6b5fe54372a927.tar.xz
u-boot-82dda962f0a6449672df3378bb6b5fe54372a927.zip
serial: Unconditionally enable CONFIG_SERIAL_MULTI
Enable CONFIG_SERIAL_MULTI for all builds of U-Boot. That includes both SPL builds and non-SPL builds, everything. To avoid poluting this patch with removal of ifdef-endif constructions containing CONFIG_SERIAL_MULTI, the CONFIG_SERIAL_MULTI is temporarily added into CPPFLAGS in config.mk . This will be again removed in following patch. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Marek Vasut <marek.vasut@gmail.com> Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index 51b47838cf..9099c1111e 100644
--- a/config.mk
+++ b/config.mk
@@ -194,7 +194,7 @@ OBJCFLAGS += --gap-fill=0xff
194gccincdir := $(shell $(CC) -print-file-name=include) 194gccincdir := $(shell $(CC) -print-file-name=include)
195 195
196CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS) \ 196CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS) \
197 -D__KERNEL__ 197 -D__KERNEL__ -DCONFIG_SERIAL_MULTI
198 198
199# Enable garbage collection of un-used sections for SPL 199# Enable garbage collection of un-used sections for SPL
200ifeq ($(CONFIG_SPL_BUILD),y) 200ifeq ($(CONFIG_SPL_BUILD),y)