diff options
author | Eric Lai <ericr_lai@compal.corp-partner.google.com> | 2021-03-15 15:46:13 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-03-18 08:15:57 +0000 |
commit | 1120519e73c836f77b888433558e1f01de899cd9 (patch) | |
tree | f8daad6535b95407f411503c88ebe7c79ae7388a | |
parent | 2988942b38e2f401334f4ca94a18c5afbb5d5d6e (diff) |
mb/google/mancomb: Enable verstage
BUG=b:182211161
TEST=builds
Signed-off-by: Eric Lai <ericr_lai@compal.corp-partner.google.com>
Change-Id: Ic07a3ac556637919742fcbe899ee3fdfac38bb94
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51492
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Mathew King <mathewk@chromium.org>
-rw-r--r-- | src/mainboard/google/mancomb/Makefile.inc | 2 | ||||
-rw-r--r-- | src/mainboard/google/mancomb/verstage.c | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/mainboard/google/mancomb/Makefile.inc b/src/mainboard/google/mancomb/Makefile.inc index 7d2b1355ad..f4514ab278 100644 --- a/src/mainboard/google/mancomb/Makefile.inc +++ b/src/mainboard/google/mancomb/Makefile.inc @@ -2,6 +2,8 @@ bootblock-y += bootblock.c +verstage-y += verstage.c + ramstage-y += mainboard.c ramstage-$(CONFIG_CHROMEOS) += chromeos.c diff --git a/src/mainboard/google/mancomb/verstage.c b/src/mainboard/google/mancomb/verstage.c new file mode 100644 index 0000000000..ab079cad91 --- /dev/null +++ b/src/mainboard/google/mancomb/verstage.c @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#include <security/vboot/vboot_common.h> + +void verstage_mainboard_early_init(void) +{ +} + +void verstage_mainboard_init(void) +{ +} |