Paul Menzel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/41997 )
Change subject: drivers/ipmi: Increase BMC timeout message level from INFO to ERR ......................................................................
drivers/ipmi: Increase BMC timeout message level from INFO to ERR
If the system is configured with a BMC, the user expects the BMC to be functional. If the initialization times out, than possible expected management features won’t work, so inform the user about that error.
It could also be debated, to make it a warning, but I chose to make it an error.
Change-Id: I282ea7547e0f5b3cf3b44e4d42977a825180393a Signed-off-by: Paul Menzel pmenzel@molgen.mpg.de --- M src/drivers/ipmi/ipmi_kcs_ops.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/97/41997/1
diff --git a/src/drivers/ipmi/ipmi_kcs_ops.c b/src/drivers/ipmi/ipmi_kcs_ops.c index 0b90fb2..a5a963e 100644 --- a/src/drivers/ipmi/ipmi_kcs_ops.c +++ b/src/drivers/ipmi/ipmi_kcs_ops.c @@ -96,7 +96,7 @@ mdelay(100); } if (stopwatch_expired(&sw)) { - printk(BIOS_INFO, "IPMI: Waiting for BMC timed out\n"); + printk(BIOS_WARN, "IPMI: Waiting for BMC timed out\n"); /* Don't write tables if communication failed */ dev->enabled = 0; return;