diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-09-16 16:20:24 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-09-19 17:01:37 +0200 |
commit | c701393e207cd09c6ce232960c7c647bef27055f (patch) | |
tree | a8f18547bc8645a4d4475a7edf2828a48589272a /src/console | |
parent | dfe614ff9fea97b712e10f4977f2343a1f070d3e (diff) |
console: honor CONFIG_POSTCAR_CONSOLE
The declarations for console_init() were unconditionally
exposed even though there is a Kconfig option. Correct this
by honoring the CONFIG_POSTCAR_CONSOLE condition.
BUG=chrome-os-partner:57513
Change-Id: Id45ae3d7c05a9f4ebcf85c446fc68a709513bb0f
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/16617
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/console/Makefile.inc b/src/console/Makefile.inc index 68afb8a18f..059dea544c 100644 --- a/src/console/Makefile.inc +++ b/src/console/Makefile.inc @@ -18,8 +18,8 @@ romstage-y += init.c console.c romstage-y += post.c romstage-y += die.c -postcar-y += vtxprintf.c printk.c -postcar-y += init.c console.c +postcar-$(CONFIG_POSTCAR_CONSOLE) += vtxprintf.c printk.c +postcar-$(CONFIG_POSTCAR_CONSOLE) += init.c console.c postcar-y += post.c postcar-y += die.c |