From: Simon Glass Date: Sat, 20 Jul 2024 10:49:31 +0000 (+0100) Subject: fixdep: Support VPL X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=12ddbc156494e411c78376793af94ec20c0de86b;p=u-boot.git fixdep: Support VPL Add VPL support in this tool. Signed-off-by: Simon Glass Fixes: f86ca5ad8f7 ("Introduce Verifying Program Loader (VPL)") --- diff --git a/scripts/basic/fixdep.c b/scripts/basic/fixdep.c index 5ced0f6b06..3d40bd7ee2 100644 --- 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);