diff options
author | Nico Huber <nico.h@gmx.de> | 2018-10-17 19:40:26 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-10-22 08:40:55 +0000 |
commit | 9df62b04ff9f7ced64ef5aae87fcfed4d35f0a92 (patch) | |
tree | f3b1652cbe67424ac4442c01b4226cd5342d88df /src/mainboard/google | |
parent | e20dd19dde6ab887a71b084fa342a8c46488568e (diff) | |
download | coreboot-9df62b04ff9f7ced64ef5aae87fcfed4d35f0a92.tar.xz |
mainboard/: Select MISSING_BOARD_RESET appropriately
We didn't have a hard_reset() implementation for these boards. So
select the board_reset() stub for them.
Change-Id: I77651e3844632fb1a347008c96e53d23cc5a2646
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/29170
Reviewed-by: Julius Werner <jwerner@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/cheza/Kconfig | 1 | ||||
-rw-r--r-- | src/mainboard/google/peach_pit/Kconfig | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/google/cheza/Kconfig b/src/mainboard/google/cheza/Kconfig index b60c1b0c86..5f952f261c 100644 --- a/src/mainboard/google/cheza/Kconfig +++ b/src/mainboard/google/cheza/Kconfig @@ -11,6 +11,7 @@ config BOARD_SPECIFIC_OPTIONS select SOC_QUALCOMM_SDM845 select SPI_FLASH select MAINBOARD_HAS_CHROMEOS + select MISSING_BOARD_RESET config VBOOT select VBOOT_VBNV_FLASH diff --git a/src/mainboard/google/peach_pit/Kconfig b/src/mainboard/google/peach_pit/Kconfig index 84b4804af3..7c8fa4d749 100644 --- a/src/mainboard/google/peach_pit/Kconfig +++ b/src/mainboard/google/peach_pit/Kconfig @@ -27,6 +27,7 @@ config BOARD_SPECIFIC_OPTIONS # dummy select DRIVER_PARADE_PS8625 select MAINBOARD_HAS_I2C_TPM_GENERIC select MAINBOARD_HAS_TPM1 + select MISSING_BOARD_RESET config VBOOT select VBOOT_VBNV_EC |