]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
fixdep: Support VPL
authorSimon Glass <sjg@chromium.org>
Sat, 20 Jul 2024 10:49:31 +0000 (11:49 +0100)
committerSimon 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

index 5ced0f6b069854e228e1a74729b9957c7b5c3632..3d40bd7ee25db482397eb081642fb2f35566678b 100644 (file)
@@ -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);