diff options
author | Julius Werner <jwerner@chromium.org> | 2019-11-26 17:58:11 -0800 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2019-11-28 07:03:20 +0000 |
commit | d618aaceae69fa83f630da84036da8ee23ef43e1 (patch) | |
tree | 57add8f595faf00617b20dee89ce4999baf1a460 /src/security/vboot/Makefile.inc | |
parent | 3e8ef1028dc92d2f06f20e7f80db70002ba84841 (diff) | |
download | coreboot-d618aaceae69fa83f630da84036da8ee23ef43e1.tar.xz |
security/vboot: Use persistent context to read GBB flags
With the persistent vboot context coreboot no longer needs to read GBB
flags from flash itself -- it can just ask vboot for the cached result.
This patch removes the existing GBB code and provides gbb_is_flag_set()
(with a slightly better namespaced name) as a static inline instead.
Change-Id: Ibc3ed0f3fbeb53d630925d47df4dc474b0ed07ee
Signed-off-by: Julius Werner <jwerner@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37261
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Joel Kitching <kitching@google.com>
Diffstat (limited to 'src/security/vboot/Makefile.inc')
-rw-r--r-- | src/security/vboot/Makefile.inc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/security/vboot/Makefile.inc b/src/security/vboot/Makefile.inc index 010a06cfa7..5292bd142d 100644 --- a/src/security/vboot/Makefile.inc +++ b/src/security/vboot/Makefile.inc @@ -24,8 +24,6 @@ postcar-y += bootmode.c verstage-generic-ccopts += -D__VERSTAGE__ -ramstage-y += gbb.c - bootblock-y += vbnv.c verstage-y += vbnv.c romstage-y += vbnv.c |