summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTing Shen <phoenixshen@google.com>2018-08-13 18:05:02 +0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2018-08-13 15:05:34 +0000
commit5119789d52e5179b24bf35a7cec9090c40a616bd (patch)
treeaa8c896fe40250834f3bdde3d34702186a834d89
parent2f2c08204c31f8762a3cba043729ae2d5dc6c69b (diff)
downloadvboot-5119789d52e5179b24bf35a7cec9090c40a616bd.tar.gz
campfire: sync more flags
BUG=b:112520234 TEST=make runtests BRANCH=eve-campfire Change-Id: I93410ccc5c74841af62e9a3ec85b04691b5043cb Signed-off-by: Ting Shen <phoenixshen@google.com> Reviewed-on: https://chromium-review.googlesource.com/1172304 Commit-Queue: Ting Shen <phoenixshen@chromium.org> Tested-by: Ting Shen <phoenixshen@chromium.org> Reviewed-by: Hung-Te Lin <hungte@chromium.org>
-rw-r--r--firmware/include/vboot_api.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/firmware/include/vboot_api.h b/firmware/include/vboot_api.h
index 2e593391..05a509d1 100644
--- a/firmware/include/vboot_api.h
+++ b/firmware/include/vboot_api.h
@@ -128,8 +128,10 @@ enum VbErrorPredefined_t {
VBERROR_RW_JUMP_FAILED = 0x10028,
/* Error reading FWMP from TPM (note: not present is not an error) */
VBERROR_TPM_READ_FWMP = 0x10029,
+ /* Peripheral busy. Cannot upgrade firmware at present. */
+ VBERROR_PERIPHERAL_BUSY = 0x10030,
/* Error reading or writing Alt OS flags to TPM */
- VBERROR_TPM_ALT_OS = 0x10030,
+ VBERROR_TPM_ALT_OS = 0x10031,
/* VbExEcGetExpectedRWHash() may return the following codes */
/* Compute expected RW hash from the EC image; BIOS doesn't have it */
@@ -770,8 +772,10 @@ enum VbScreenType_t {
VB_SCREEN_DEVELOPER_TO_NORM_MENU = 0x20e,
/* Detachable Menu - Languages */
VB_SCREEN_LANGUAGES_MENU = 0x20f,
+ /* Detachable Menu - Options */
+ VB_SCREEN_OPTIONS_MENU = 0x210,
/* Alt OS picker screen */
- VB_SCREEN_ALT_OS = 0x210,
+ VB_SCREEN_ALT_OS = 0x211,
};
/**