Aaron Durbin (adurbin@chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10194
-gerrit
commit 943a166a2565076c30f12e5a91a2226f4c945aad Author: Aaron Durbin adurbin@chromium.org Date: Wed May 13 13:32:11 2015 -0500
console: enumerate all known stages
There are more stages than currently handled in the initial message from console_init(). Add support for those including an UNKNOWN catchall.
Change-Id: I2374db590072bdca8ff35116e2ecb2ad6459b697 Signed-off-by: Aaron Durbin adurbin@chromium.org --- src/console/init.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/src/console/init.c b/src/console/init.c index dc727b0..5bca6ad 100644 --- a/src/console/init.c +++ b/src/console/init.c @@ -24,6 +24,7 @@ #include <console/streams.h> #include <device/pci.h> #include <option.h> +#include <rules.h> #include <version.h>
/* While in romstage, console loglevel is built-time constant. */ @@ -49,12 +50,18 @@ void console_init(void)
printk(BIOS_INFO, "\n\ncoreboot-%s%s %s %s starting...\n", coreboot_version, coreboot_extra_version, coreboot_build, -#if defined(__BOOTBLOCK__) +#if ENV_BOOTBLOCK "bootblock" -#elif defined(__PRE_RAM__) +#elif ENV_ROMSTAGE "romstage" -#else +#elif ENV_RAMSTAGE "ramstage" +#elif ENV_VERSTAGE + "verstage" +#elif ENV_SECMON + "secmon" +#else + "UNKNOWN" #endif ); }