summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Kitching <kitching@google.com>2019-05-14 12:31:56 +0800
committerchrome-bot <chrome-bot@chromium.org>2019-05-16 09:04:18 -0700
commit8c857f466aecf70d788fc3937af0e881545ea989 (patch)
treef34044f4712e024604b851f64819da8c1f907358
parent28c21d92edbea4af68b15c2722b5d79ae9255b65 (diff)
downloadvboot-8c857f466aecf70d788fc3937af0e881545ea989.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: I0ec29d61bd9e87bcaaffd647015e252ff3222708 Signed-off-by: Joel Kitching <kitching@google.com> Reviewed-on: https://chromium-review.googlesource.com/1605640 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Tested-by: Joel Kitching <kitching@chromium.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
-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. */