diff options
author | Furquan Shaikh <furquan@google.com> | 2019-05-08 12:40:19 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-05-10 15:13:46 +0000 |
commit | 2de7af0c39c3d65b592c1e83d5511e2ef09a203c (patch) | |
tree | 92a521c061bf26d15859e344897e63bc95b31518 | |
parent | 32b9a99e1670c638cf6e2db2a6274c3f0ab27c85 (diff) | |
download | coreboot-2de7af0c39c3d65b592c1e83d5511e2ef09a203c.tar.gz coreboot-2de7af0c39c3d65b592c1e83d5511e2ef09a203c.tar.bz2 coreboot-2de7af0c39c3d65b592c1e83d5511e2ef09a203c.zip |
mb/google/hatch: Fix GBB_HWID for kohaku
This change fixes the typo in CB:32161 (mb/google/hatch: Add Kohaku
board) that defaults GBB_HWID incorrectly for kohaku using
BOARD_GOOGLE_HATCH_WHL.
Change-Id: I387879619ac4f79fad422e5f1f047dfe3c7b5b22
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32690
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Reviewed-by: Shelley Chen <shchen@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/mainboard/google/hatch/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/hatch/Kconfig b/src/mainboard/google/hatch/Kconfig index 07ae7d214ead..09f792128ca9 100644 --- a/src/mainboard/google/hatch/Kconfig +++ b/src/mainboard/google/hatch/Kconfig @@ -64,7 +64,7 @@ config GBB_HWID depends on CHROMEOS default "HATCH TEST 1823" if BOARD_GOOGLE_HATCH default "HATCH_WHL TEST 2374" if BOARD_GOOGLE_HATCH_WHL - default "KOHAKU TEST 1953" if BOARD_GOOGLE_HATCH_WHL + default "KOHAKU TEST 1953" if BOARD_GOOGLE_KOHAKU config MAINBOARD_DIR string |