mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 20:34:38 +00:00
fixdep: Support VPL
Add VPL support in this tool.
Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: f86ca5ad8f
("Introduce Verifying Program Loader (VPL)")
This commit is contained in:
parent
00b0855aef
commit
12ddbc1564
1 changed files with 2 additions and 0 deletions
|
@ -421,6 +421,8 @@ int main(int argc, char *argv[])
|
|||
strcpy(tmp_buf, "SPL_");
|
||||
else if (!strncmp(target, "tpl/", 4))
|
||||
strcpy(tmp_buf, "TPL_");
|
||||
else if (!strncmp(target, "vpl/", 4))
|
||||
strcpy(tmp_buf, "VPL_");
|
||||
/* end U-Boot hack */
|
||||
|
||||
xprintf("cmd_%s := %s\n\n", target, cmdline);
|
||||
|
|
Loading…
Add table
Reference in a new issue