diff options
author | Marek Vasut | 2012-09-14 23:20:05 +0200 |
---|---|---|
committer | Tom Rini | 2012-10-15 11:53:58 -0700 |
commit | 82dda962f0a6449672df3378bb6b5fe54372a927 (patch) | |
tree | f2c351aefd33802811175a166f256cf0f79de2bb /config.mk | |
parent | 7742aa65a89c28577e9674d688c34cf865587076 (diff) |
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.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk index 51b47838cf5..9099c1111e4 100644 --- a/config.mk +++ b/config.mk @@ -194,7 +194,7 @@ OBJCFLAGS += --gap-fill=0xff gccincdir := $(shell $(CC) -print-file-name=include) CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS) \ - -D__KERNEL__ + -D__KERNEL__ -DCONFIG_SERIAL_MULTI # Enable garbage collection of un-used sections for SPL ifeq ($(CONFIG_SPL_BUILD),y) |