mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
UPSTREAM: console: Make snprintf available in all stages
BUG=none
BRANCH=none
TEST=none
Change-Id: I7d4bcca6bc4ae01190e60874570c73cb29f435d2
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 8941158d19
Original-Change-Id: If5e255c75e7774393ef7e4febef84d97a1a3a118
Original-Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Original-Reviewed-on: https://review.coreboot.org/19366
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Original-Reviewed-by: Philippe Mathieu-Daud <philippe.mathieu.daude@gmail.com>
Reviewed-on: https://chromium-review.googlesource.com/486752
This commit is contained in:
parent
4d3d353c47
commit
ab5f1c19ac
1 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue