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:
parent
0e755d4f7a
commit
fad5c4465f
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue