Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38408 )
Change subject: console/post: NOPOST means NOPOST. ......................................................................
console/post: NOPOST means NOPOST.
Not "NOPOST except when the board says something else".
Change-Id: I3608e9c3a7d2338363a4320c8718b20ef25a038a Signed-off-by: Patrick Georgi pgeorgi@google.com --- M src/console/post.c 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/08/38408/1
diff --git a/src/console/post.c b/src/console/post.c index 33d85e7..6265770 100644 --- a/src/console/post.c +++ b/src/console/post.c @@ -32,6 +32,7 @@
if (CONFIG(CONSOLE_POST)) printk(BIOS_EMERG, "POST: 0x%02x\n", value); + + mainboard_post(value); } - mainboard_post(value); }