summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/console/Makefile.inc9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/console/Makefile.inc b/src/console/Makefile.inc
index aa0dbf5f72..13f2b10a11 100644
--- a/src/console/Makefile.inc
+++ b/src/console/Makefile.inc
@@ -12,22 +12,23 @@ smm-$(CONFIG_SMM_TSEG) += die.c
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