diff options
author | Furquan Shaikh <furquan@google.com> | 2020-05-22 00:06:33 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2020-05-29 15:58:11 +0000 |
commit | 1a438f33ffe5482c7a995cb1b25cc70db9b1e7fa (patch) | |
tree | b5b692f6ac33ff395eabbee7a4ed40d2ebd6a44e /src/mainboard/google/hatch/Kconfig | |
parent | 8a017aa394f40e6712f006eda2cdfe647c7a1172 (diff) | |
download | coreboot-1a438f33ffe5482c7a995cb1b25cc70db9b1e7fa.tar.xz |
mb/google/hatch: Select BOARD_ROMSIZE_KB_16384 by default
All hatch and puff variants use 16MiB SPI flash except the legacy ones
which used 32MiB flash. Kconfig.name is updated to select
BOARD_ROMSIZE_KB_32768 only for the legacy variants and
BOARD_GOOGLE_HATCH_COMMON selects BOARD_ROMSIZE_KB_16384 by default if
BOARD_ROMSIZE_KB_32768 is not selected.
TEST=Verified using abuild --timeless that all hatch variants generate
the same coreboot.rom image with and without this change.
Change-Id: I708506182966936ea38562db8b0325470e34c908
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41662
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Reviewed-by: V Sowmya <v.sowmya@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/hatch/Kconfig')
-rw-r--r-- | src/mainboard/google/hatch/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainboard/google/hatch/Kconfig b/src/mainboard/google/hatch/Kconfig index 853f72b6f9..7e3b9e3948 100644 --- a/src/mainboard/google/hatch/Kconfig +++ b/src/mainboard/google/hatch/Kconfig @@ -15,6 +15,7 @@ config BOARD_GOOGLE_BASEBOARD_PUFF config BOARD_GOOGLE_HATCH_COMMON def_bool n + select BOARD_ROMSIZE_KB_16384 if !BOARD_ROMSIZE_KB_32768 select DRIVERS_GENERIC_GPIO_KEYS select DRIVERS_GENERIC_MAX98357A select DRIVERS_I2C_DA7219 |