vboot: include vb2_sha.h when required

Should include vb2_sha.h header when SHA library functions or
constants are required.  This replaces NEED_VB2_SHA_LIBRARY.

BUG=b:124141368, chromium:956474
TEST=make clean && make test-abuild
BRANCH=none

Change-Id: I9f32174dbf3de05fbe5279cb8017888757abf368
Signed-off-by: Joel Kitching <kitching@google.com>
Cq-Depend: chromium:1583820
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32454
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
Joel Kitching 2019-04-25 17:45:12 +08:00 committed by Patrick Georgi
parent 5923d67cfd
commit 2eb89c8b14
5 changed files with 4 additions and 1 deletions

View File

@ -18,6 +18,7 @@
#include <commonlib/endian.h> #include <commonlib/endian.h>
#include <commonlib/helpers.h> #include <commonlib/helpers.h>
#include <string.h> #include <string.h>
#include <vb2_sha.h>
#if !defined(ERROR) #if !defined(ERROR)
#define ERROR(x...) printk(BIOS_ERR, "CBFS: " x) #define ERROR(x...) printk(BIOS_ERR, "CBFS: " x)

View File

@ -22,6 +22,7 @@
#include <stdlib.h> #include <stdlib.h>
#if CONFIG(VBOOT) #if CONFIG(VBOOT)
#include <vb2_api.h> #include <vb2_api.h>
#include <vb2_sha.h>
#include <assert.h> #include <assert.h>
#endif #endif

View File

@ -37,6 +37,7 @@
#include <types.h> #include <types.h>
#include <security/tpm/tspi.h> #include <security/tpm/tspi.h>
#include <vb2_sha.h>
struct vb2_context; struct vb2_context;
enum vb2_pcr_digest; enum vb2_pcr_digest;

View File

@ -81,7 +81,6 @@ TOOLCPPFLAGS += -I$(top)/util/cbfstool
TOOLCPPFLAGS += -I$(objutil)/cbfstool TOOLCPPFLAGS += -I$(objutil)/cbfstool
TOOLCPPFLAGS += -I$(top)/src/commonlib/include TOOLCPPFLAGS += -I$(top)/src/commonlib/include
TOOLCPPFLAGS += -include $(top)/src/commonlib/include/commonlib/compiler.h TOOLCPPFLAGS += -include $(top)/src/commonlib/include/commonlib/compiler.h
TOOLCPPFLAGS += -DNEED_VB2_SHA_LIBRARY
TOOLCPPFLAGS += -I$(VBOOT_SOURCE)/firmware/include TOOLCPPFLAGS += -I$(VBOOT_SOURCE)/firmware/include
TOOLCPPFLAGS += -I$(VBOOT_SOURCE)/firmware/2lib/include TOOLCPPFLAGS += -I$(VBOOT_SOURCE)/firmware/2lib/include
# UEFI header file support. It's not pretty, but that's what we currently # UEFI header file support. It's not pretty, but that's what we currently

View File

@ -22,6 +22,7 @@
#include <string.h> #include <string.h>
#include <strings.h> #include <strings.h>
#include <commonlib/endian.h> #include <commonlib/endian.h>
#include <vb2_sha.h>
#include "common.h" #include "common.h"
#include "cbfs_image.h" #include "cbfs_image.h"