summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Kitching <kitching@google.com>2019-05-14 12:31:56 +0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2019-05-18 22:06:21 +0000
commit8c398a40fdfb09526dbcf0eb35fe1d0bd114516c (patch)
treef34044f4712e024604b851f64819da8c1f907358
parent41ae1116fee2676c56de367f5aec0dedd1ceedf9 (diff)
downloadvboot-8c398a40fdfb09526dbcf0eb35fe1d0bd114516c.tar.gz
vboot: add VB2_NV_DISPLAY_REQUEST
As part of go/vboot2-oprom-cleanup, prepare to rename NVRAM request flag used to request that coreboot initialize the device's display, from VB2_NV_OPROM_NEEDED to VB2_NV_DISPLAY_REQUEST. BUG=b:124141368, b:124192753, chromium:948529 TEST=make clean && make runtests BRANCH=none Change-Id: I1c6bccdf82f85592e0f43255c4e0f618ff45fdd1 Signed-off-by: Duncan Laurie <dlaurie@google.com> Original-Commit-Id: 8c857f466aecf70d788fc3937af0e881545ea989 Original-Change-Id: I0ec29d61bd9e87bcaaffd647015e252ff3222708 Original-Signed-off-by: Joel Kitching <kitching@google.com> Original-Reviewed-on: https://chromium-review.googlesource.com/1605640 Original-Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Original-Tested-by: Joel Kitching <kitching@chromium.org> Original-Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/1618904
-rw-r--r--firmware/2lib/include/2nvstorage.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/2lib/include/2nvstorage.h b/firmware/2lib/include/2nvstorage.h
index c9524a19..3efa29b6 100644
--- a/firmware/2lib/include/2nvstorage.h
+++ b/firmware/2lib/include/2nvstorage.h
@@ -73,6 +73,9 @@ enum vb2_nv_param {
* 1=yes.
*/
VB2_NV_OPROM_NEEDED,
+ /* TODO(chromium:948529): VB2_NV_OPROM_NEEDED is being renamed to
+ VB2_NV_DISPLAY_REQUEST. */
+ VB2_NV_DISPLAY_REQUEST = VB2_NV_OPROM_NEEDED,
/* Request that the firmware clear the TPM owner on the next boot. */
VB2_NV_CLEAR_TPM_OWNER_REQUEST,
/* Flag that TPM owner was cleared on request. */