Matt DeVillier has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39863 )
Change subject: mb/google/glados: set sane Kconfig defaults ......................................................................
mb/google/glados: set sane Kconfig defaults
Glados boards require FSP blobs to boot, and none have an exposed serial port outside of the servo interface. Set Kconfig defaults so that a default built image is bootable and doesn't hang due to trying to send data over a non-existant serial port.
Test: build/boot google/chell with board defaults
Change-Id: Ifad6f805e66438e2c436d9fa235d9be2ecf69179 Signed-off-by: Matt DeVillier matt.devillier@gmail.com --- M src/mainboard/google/glados/Kconfig 1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/63/39863/1
diff --git a/src/mainboard/google/glados/Kconfig b/src/mainboard/google/glados/Kconfig index bc0c67b..9e45aaa 100644 --- a/src/mainboard/google/glados/Kconfig +++ b/src/mainboard/google/glados/Kconfig @@ -1,5 +1,6 @@ config BOARD_GOOGLE_BASEBOARD_GLADOS def_bool n + select ADD_FSP_BINARIES select BOARD_ROMSIZE_KB_16384 select DRIVERS_I2C_GENERIC select DRIVERS_I2C_NAU8825 @@ -9,6 +10,7 @@ select EC_GOOGLE_CHROMEEC_LPC select EC_GOOGLE_CHROMEEC_MEC select EC_GOOGLE_CHROMEEC_PD + select FSP_USE_REPO select HAVE_ACPI_RESUME select HAVE_ACPI_TABLES select HAVE_OPTION_TABLE @@ -93,4 +95,8 @@ int default 2
+config CONSOLE_SERIAL + bool + default n + endif