mb/supermicro/x11-lga1151-series: drop console guard in bootblock
To make debugging possible in a fallback setup, the serial console must be set up in bootblock, thus drop the guard. Change-Id: If0dd3c03ba52b4936eb234e6b2b61bb5ce044fcd Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36602 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
403b70adb9
commit
ab0d687fc5
|
@ -32,8 +32,7 @@ static void early_config_gpio(void)
|
||||||
static void early_config_superio(void)
|
static void early_config_superio(void)
|
||||||
{
|
{
|
||||||
const pnp_devfn_t serial_dev = PNP_DEV(0x2e, AST2400_SUART1);
|
const pnp_devfn_t serial_dev = PNP_DEV(0x2e, AST2400_SUART1);
|
||||||
if (CONFIG(CONSOLE_SERIAL))
|
aspeed_enable_serial(serial_dev, CONFIG_TTYS0_BASE);
|
||||||
aspeed_enable_serial(serial_dev, CONFIG_TTYS0_BASE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void bootblock_mainboard_early_init(void)
|
void bootblock_mainboard_early_init(void)
|
||||||
|
|
Loading…
Reference in New Issue