diff options
author | Joel Kitching <kitching@google.com> | 2019-05-17 14:26:01 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-05-20 12:48:19 +0000 |
commit | 7576bd7f4299a3af220a7ba3d6c4928812c2982b (patch) | |
tree | a73993f9b448d8aed23ad2fe006b5a999af1cddf /src/security/vboot/misc.h | |
parent | fc46ad8a8b99fbfaf5f2e9112abbb26221c1aeff (diff) |
vboot: save whether developer mode is enabled
Save whether or not vboot has selected developer mode as a flag
in vboot_working_data. Other coreboot code may access this flag
without needing to consult vboot_handoff (which is in the process
of being deprecated).
BUG=b:124141368, b:124192753
TEST=make clean && make test-abuild
BRANCH=none
Change-Id: Ieb6ac4937c943aea78ddc762595a05387d2b8114
Signed-off-by: Joel Kitching <kitching@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32843
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/security/vboot/misc.h')
-rw-r--r-- | src/security/vboot/misc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/security/vboot/misc.h b/src/security/vboot/misc.h index 23159c8a0d..acb6dbbd02 100644 --- a/src/security/vboot/misc.h +++ b/src/security/vboot/misc.h @@ -47,6 +47,8 @@ struct vboot_working_data { */ /* vboot requests display initialization from coreboot. */ #define VBOOT_WD_FLAG_DISPLAY_INIT (1 << 0) +/* vboot has selected developer mode. */ +#define VBOOT_WD_FLAG_DEVELOPER_MODE (1 << 1) /* * Source: security/vboot/common.c |