aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mainboard/google/mancomb/Makefile.inc2
-rw-r--r--src/mainboard/google/mancomb/verstage.c11
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)
+{
+}