diff options
author | Sean Rhodes <sean@starlabs.systems> | 2023-04-05 09:10:14 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-08-10 14:12:36 +0000 |
commit | 8dad3f1afaf399ef64a6f641c01cd8763371ec79 (patch) | |
tree | 567d280326b9fb864b7ce252e574e905cc80882f /src/mainboard/starlabs/starbook/Makefile.inc | |
parent | 2eb5c1e83ef5206f384846d7514c3aebcaec5bb8 (diff) |
mb/starlabs/starbook: Add support for VBOOT
Add the required files to support VBOOT for when it is enabled.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I842b79d8e144414ce42b3d0d9dfd2b5180ecf70d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74230
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/starlabs/starbook/Makefile.inc')
-rw-r--r-- | src/mainboard/starlabs/starbook/Makefile.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/starlabs/starbook/Makefile.inc b/src/mainboard/starlabs/starbook/Makefile.inc index dc26be0afa..c6d94c85c3 100644 --- a/src/mainboard/starlabs/starbook/Makefile.inc +++ b/src/mainboard/starlabs/starbook/Makefile.inc @@ -6,6 +6,10 @@ subdirs-y += variants/$(VARIANT_DIR) bootblock-y += bootblock.c +verstage-$(CONFIG_VBOOT) += vboot.c + +romstage-$(CONFIG_VBOOT) += vboot.c + ramstage-y += hda_verb.c ramstage-y += mainboard.c ramstage-y += smbios.c |