diff options
author | Shelley Chen <shchen@google.com> | 2019-03-08 10:20:45 -0800 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2019-03-11 20:54:06 +0000 |
commit | 44a597787aabef994500445b83e20519f869fd8d (patch) | |
tree | d0b60d73d24e018b3fdddb25b2432a74fc1c39b4 /src/mainboard | |
parent | d244f6ca46c2bd5f91f6d74d62884125b6fbcdfa (diff) | |
download | coreboot-44a597787aabef994500445b83e20519f869fd8d.tar.xz |
mb/google/hatch: Add Hatch_whl board
Adding Hatch_whl as a variant of hatch. This is a snapshot of the WHL
version of hatch so that we can rebuild the bios images for Hatch with
WHL SoC.
BUG=b:127310803
BRANCH=NONE
TEST=./util/abuild/abuild -p none -t google/hatch -x -a
make sure HATCH_WHL is built as well.
Change-Id: I24510fa226878582a61f1846f0b56a2c65204a92
Signed-off-by: Shelley Chen <shchen@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/31824
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/hatch/Kconfig | 5 | ||||
-rw-r--r-- | src/mainboard/google/hatch/Kconfig.name | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/mainboard/google/hatch/Kconfig b/src/mainboard/google/hatch/Kconfig index 7902a04cac..c200845995 100644 --- a/src/mainboard/google/hatch/Kconfig +++ b/src/mainboard/google/hatch/Kconfig @@ -55,6 +55,7 @@ config GBB_HWID string depends on CHROMEOS default "HATCH TEST 1823" if BOARD_GOOGLE_HATCH + default "HATCH_WHL TEST 2374" if BOARD_GOOGLE_HATCH_WHL config MAINBOARD_DIR string @@ -62,11 +63,12 @@ config MAINBOARD_DIR config MAINBOARD_FAMILY string - default "Google_Hatch" if BOARD_GOOGLE_HATCH + default "Google_Hatch" config MAINBOARD_PART_NUMBER string default "Hatch" if BOARD_GOOGLE_HATCH + default "Hatch_whl" if BOARD_GOOGLE_HATCH_WHL config MAINBOARD_VENDOR string @@ -83,6 +85,7 @@ config TPM_TIS_ACPI_INTERRUPT config VARIANT_DIR string default "hatch" if BOARD_GOOGLE_HATCH + default "hatch_whl" if BOARD_GOOGLE_HATCH_WHL config VBOOT select HAS_RECOVERY_MRC_CACHE diff --git a/src/mainboard/google/hatch/Kconfig.name b/src/mainboard/google/hatch/Kconfig.name index 79edb63bb7..fa743cdba0 100644 --- a/src/mainboard/google/hatch/Kconfig.name +++ b/src/mainboard/google/hatch/Kconfig.name @@ -3,3 +3,7 @@ comment "Hatch" config BOARD_GOOGLE_HATCH bool "-> Hatch" select BOARD_GOOGLE_BASEBOARD_HATCH + +config BOARD_GOOGLE_HATCH_WHL + bool "-> Hatch_whl" + select BOARD_GOOGLE_BASEBOARD_HATCH |