Joel Kitching has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38887 )
Change subject: vboot: remove use of NEED_VB20_INTERNALS switch ......................................................................
vboot: remove use of NEED_VB20_INTERNALS switch
The NEED_VB20_INTERNALS switch is being deprecated. Use the header file vb2_internals_please_do_not_use.h instead.
BUG=b:124141368, chromium:957880 TEST=make clean && make test-abuild BRANCH=none
Change-Id: Ie35644876178b806fab4f0ce8089a556227312db Signed-off-by: Joel Kitching kitching@google.com Cq-Depend: chromium:2055600 --- M src/vendorcode/eltan/security/verified_boot/vboot_check.c 1 file changed, 1 insertion(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/87/38887/1
diff --git a/src/vendorcode/eltan/security/verified_boot/vboot_check.c b/src/vendorcode/eltan/security/verified_boot/vboot_check.c index 2edd8f9..9d99e02 100644 --- a/src/vendorcode/eltan/security/verified_boot/vboot_check.c +++ b/src/vendorcode/eltan/security/verified_boot/vboot_check.c @@ -14,13 +14,12 @@ * GNU General Public License for more details. */
-#define NEED_VB20_INTERNALS - #include <boot_device.h> #include <bootmem.h> #include <cbfs.h> #include <vboot_check.h> #include <vboot_common.h> +#include <vb2_internals_please_do_not_use.h>
#define RSA_PUBLICKEY_FILE_NAME "vboot_public_key.bin"