diff options
author | Simon Glass <sjg@chromium.org> | 2022-10-20 18:23:19 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-31 11:04:00 -0400 |
commit | 7f3470bfaa2fd9f2adaa959ce3af8ecf924f4678 (patch) | |
tree | 1ccd6bff1d9a619784bcfd067a2056c984f37ec7 /include | |
parent | d8b7c34f98a7ff957e6921954eee3b7834576291 (diff) |
vbe: Add a command to show the VBE state
Add a VBE comment which shows the current state. Currently this is just
the phases which booted via VBE.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/spl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/spl.h b/include/spl.h index 7286f4b5ca0..3eb27de6166 100644 --- a/include/spl.h +++ b/include/spl.h @@ -66,6 +66,8 @@ enum u_boot_phase { PHASE_SPL, /* Running in SPL */ PHASE_BOARD_F, /* Running in U-Boot before relocation */ PHASE_BOARD_R, /* Running in U-Boot after relocation */ + + PHASE_COUNT, }; /** |