summaryrefslogtreecommitdiff
path: root/src/security/vboot/vboot_common.h
diff options
context:
space:
mode:
authorJoel Kitching <kitching@google.com>2019-05-07 13:01:53 +0800
committerPatrick Georgi <pgeorgi@google.com>2019-05-09 06:31:57 +0000
commit9e8cf3cc869ca70267b43ba4898a9dfa06b5a643 (patch)
treee9884b225d2e6dc04867e0cc99f3efd21c591ddd /src/security/vboot/vboot_common.h
parent0a433db22cd4eca1d26cd20ed4e662ad7c928934 (diff)
downloadcoreboot-9e8cf3cc869ca70267b43ba4898a9dfa06b5a643.tar.xz
vboot: remove use of VbInitParams
The VbInitParams struct will be deprecated. Remove its use in preparation. Additionally, remove use of the flag VB_INIT_OUT_ENABLE_USB_STORAGE, which is no longer used downstream since vboot_reference CL:347257. BUG=b:124141368, chromium:960226 TEST=make clean && make test-abuild BRANCH=none Change-Id: Ibe02cb6ba639de0d7cbdf79fc4dbf49044c92278 Signed-off-by: Joel Kitching <kitching@google.com> Cq-Depend: chromium:1583943 Reviewed-on: https://review.coreboot.org/c/coreboot/+/32664 Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/security/vboot/vboot_common.h')
-rw-r--r--src/security/vboot/vboot_common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/security/vboot/vboot_common.h b/src/security/vboot/vboot_common.h
index 768b29d4fc..9a02303d12 100644
--- a/src/security/vboot/vboot_common.h
+++ b/src/security/vboot/vboot_common.h
@@ -39,7 +39,8 @@ int vboot_check_recovery_request(void);
* vboot shared data as well as the flags from VbInit.
*/
struct vboot_handoff {
- VbInitParams init_params;
+ uint32_t reserved0; /* originally from VbInitParams */
+ uint32_t out_flags;
uint32_t selected_firmware;
char shared_data[VB_SHARED_DATA_MIN_SIZE];
} __packed;