mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-25 10:45:02 +00:00
vboot: add flag to indicate that the EC is slow to program
Some EC's are slow to program their firmware. This could happen at any boot as part of software sync. This adds the VB_INIT_FLAG_EC_SLOW_UPDATE input flag to VbInit(), so that vboot knows to display the EC-is-being-programmed screen when that flag is set. BUG=chrome-os-partner:12255 TEST=none This isn't activated yet by anything, so there's nothing to test. Change-Id: Id4d12e463fcdee017b7c52b53a2facefc33b745f Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/29370 Reviewed-by: Randall Spangler <rspangler@chromium.org>
This commit is contained in:
@@ -179,6 +179,8 @@ typedef struct VbCommonParams {
|
||||
#define VB_INIT_FLAG_OPROM_MATTERS 0x00000100
|
||||
/* EC on this platform supports EC software sync. */
|
||||
#define VB_INIT_FLAG_EC_SOFTWARE_SYNC 0x00000200
|
||||
/* EC on this platform is slow to update. */
|
||||
#define VB_INIT_FLAG_EC_SLOW_UPDATE 0x00000400
|
||||
|
||||
/* Output flags for VbInitParams.out_flags. Used to indicate
|
||||
* potential boot paths and configuration to the calling firmware
|
||||
|
||||
Reference in New Issue
Block a user