git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
00b0855
)
fixdep: Support VPL
author
Simon Glass
<sjg@chromium.org>
Sat, 20 Jul 2024 10:49:31 +0000
(11:49 +0100)
committer
Simon Glass
<sjg@chromium.org>
Mon, 29 Jul 2024 14:42:18 +0000
(08:42 -0600)
Add VPL support in this tool.
Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes:
f86ca5ad8f7
("Introduce Verifying Program Loader (VPL)")
scripts/basic/fixdep.c
patch
|
blob
|
history
diff --git
a/scripts/basic/fixdep.c
b/scripts/basic/fixdep.c
index
5ced0f6
..
3d40bd7
100644
(file)
--- a/
scripts/basic/fixdep.c
+++ b/
scripts/basic/fixdep.c
@@
-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);