mb/scaleway/tagada: Implement console loglevel override using bmcInfo

Change-Id: I0093cfafe7eaa4a4381e67c9b871fdf28abc470d
Signed-off-by: Julien Viard de Galbert <jviarddegalbert@online.net>
Reviewed-on: https://review.coreboot.org/23814
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Julien Viard de Galbert 2018-03-07 15:50:22 +01:00 committed by Martin Roth
parent 0e755d4f7a
commit fad5c4465f
2 changed files with 9 additions and 0 deletions

View File

@ -21,6 +21,7 @@ config BOARD_SPECIFIC_OPTIONS
select SOC_INTEL_DENVERTON_NS
select BOARD_ROMSIZE_KB_16384
select HAVE_ACPI_TABLES
select CONSOLE_OVERRIDE_LOGLEVEL
config MAINBOARD_DIR
string

View File

@ -189,3 +189,11 @@ int bmcinfo_disable_nic1(void)
}
/* Add override functions below */
#if __CONSOLE_ENABLE__
/* Override default console loglevel */
int get_console_loglevel(void)
{
return bmcinfo_coreboot_verbosity_level();
}
#endif