diff options
author | Yidi Lin <yidilin@chromium.org> | 2023-08-10 16:35:10 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-08-11 17:54:55 +0000 |
commit | aa1e7d8ac493e6326a3e5bc6dbc368c6bb99337a (patch) | |
tree | f6b1ca7a2b593412235f6693760f9bf9c9a7daa1 /src/mainboard/google | |
parent | ce1ef69850b56cc74f94ffe57ca9472a3fc92124 (diff) |
mb/google/geralt: Add reset.c for bootblock
VBOOT_CBFS_INTEGRATION needs board_reset in its logic. Otherwise, it
will cause a build failure.
BUG=b:294643742
TEST=build coreboot
Change-Id: Ia4b81d8add71e62707f6b5a747d270caba502174
Signed-off-by: Yidi Lin <yidilin@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77118
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/geralt/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainboard/google/geralt/Makefile.inc b/src/mainboard/google/geralt/Makefile.inc index 0c3da90a56..a0ac297468 100644 --- a/src/mainboard/google/geralt/Makefile.inc +++ b/src/mainboard/google/geralt/Makefile.inc @@ -3,6 +3,7 @@ bootblock-y += memlayout.ld bootblock-y += bootblock.c bootblock-y += chromeos.c +bootblock-$(CONFIG_VBOOT_CBFS_INTEGRATION) += reset.c verstage-y += memlayout.ld verstage-y += chromeos.c |