diff options
author | Simon Glass <sjg@chromium.org> | 2022-02-28 07:16:54 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-09-12 06:41:14 -0600 |
commit | 6ad2452bc61d925eaa40f52377baaddf92c43464 (patch) | |
tree | 476db0709b1006db5677d78ae3c66034613f8dbb /tools/binman/state.py | |
parent | 6dca1d9ad38de9b7f9a44d2c6eaa6acf9be6c2c0 (diff) |
binman: Add VPL support
Add support for U-Boot's Verifying Program Loader phase.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/state.py')
-rw-r--r-- | tools/binman/state.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/binman/state.py b/tools/binman/state.py index a302e1f00eb..56e5bf8bc10 100644 --- a/tools/binman/state.py +++ b/tools/binman/state.py @@ -22,6 +22,7 @@ OUR_PATH = os.path.dirname(os.path.realpath(__file__)) DTB_TYPE_FNAME = { 'u-boot-spl-dtb': 'spl/u-boot-spl.dtb', 'u-boot-tpl-dtb': 'tpl/u-boot-tpl.dtb', + 'u-boot-vpl-dtb': 'vpl/u-boot-vpl.dtb', } # Records the device-tree files known to binman, keyed by entry type (e.g. @@ -292,7 +293,7 @@ def GetAllFdts(): """Yield all device tree files being used by binman Yields: - Device trees being used (U-Boot proper, SPL, TPL) + Device trees being used (U-Boot proper, SPL, TPL, VPL) """ if main_dtb: yield main_dtb |