[coreboot-gerrit] Change in coreboot[master]: console: Make snprintf available in all stages

Martin Roth (Code Review) gerrit at coreboot.org
Mon Apr 24 19:25:22 CEST 2017


Martin Roth has submitted this change and it was merged. ( https://review.coreboot.org/19366 )

Change subject: console: Make snprintf available in all stages
......................................................................


console: Make snprintf available in all stages

Change-Id: If5e255c75e7774393ef7e4febef84d97a1a3a118
Signed-off-by: Paul Menzel <pmenzel at molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/19366
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin at chromium.org>
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude at gmail.com>
---
M src/console/Makefile.inc
1 file changed, 5 insertions(+), 4 deletions(-)

Approvals:
  Aaron Durbin: Looks good to me, approved
  Philippe Mathieu-Daudé: Looks good to me, but someone else must approve
  build bot (Jenkins): Verified



diff --git a/src/console/Makefile.inc b/src/console/Makefile.inc
index aa0dbf5..13f2b10 100644
--- a/src/console/Makefile.inc
+++ b/src/console/Makefile.inc
@@ -12,22 +12,23 @@
 
 verstage-y += init.c
 verstage-y += printk.c
-verstage-y += vtxprintf.c
+verstage-y += vtxprintf.c vsprintf.c
 verstage-y += console.c
 verstage-y += post.c
 verstage-y += die.c
 
-romstage-y += vtxprintf.c printk.c
+romstage-y += vtxprintf.c printk.c vsprintf.c
 romstage-y += init.c console.c
 romstage-y += post.c
 romstage-y += die.c
 
-postcar-$(CONFIG_POSTCAR_CONSOLE) += vtxprintf.c printk.c
+postcar-$(CONFIG_POSTCAR_CONSOLE) += vtxprintf.c printk.c vsprintf.c
 postcar-$(CONFIG_POSTCAR_CONSOLE) += init.c console.c
 postcar-y += post.c
 postcar-y += die.c
 
-bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += vtxprintf.c printk.c
+bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += printk.c
+bootblock-y += vtxprintf.c vsprintf.c
 bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += init.c console.c
 bootblock-y += post.c
 bootblock-y += die.c

-- 
To view, visit https://review.coreboot.org/19366
To unsubscribe, visit https://review.coreboot.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: If5e255c75e7774393ef7e4febef84d97a1a3a118
Gerrit-PatchSet: 5
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Owner: Paul Menzel <paulepanter at users.sourceforge.net>
Gerrit-Reviewer: Aaron Durbin <adurbin at chromium.org>
Gerrit-Reviewer: Julius Werner <jwerner at chromium.org>
Gerrit-Reviewer: Martin Roth <martinroth at google.com>
Gerrit-Reviewer: Paul Menzel <paulepanter at users.sourceforge.net>
Gerrit-Reviewer: Philippe Mathieu-Daudé <philippe.mathieu.daude at gmail.com>
Gerrit-Reviewer: build bot (Jenkins)



More information about the coreboot-gerrit mailing list