]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL use of CMD_NVEDIT_EFI
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:36:36 +0000 (15:36 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 9 Feb 2023 21:32:26 +0000 (16:32 -0500)
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_NVEDIT_EFI defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
cmd/nvedit.c

index e2a5f0089e990cdcb066c02f5d8cc2985bb30bbe..7cbc3fd573a0bb5ccc377c5076cb5634f6846dc7 100644 (file)
@@ -231,7 +231,7 @@ static int _do_env_set(int flag, int argc, char *const argv[], int env_flag)
 
        debug("Initial value for argc=%d\n", argc);
 
-#if CONFIG_IS_ENABLED(CMD_NVEDIT_EFI)
+#if !IS_ENABLED(CONFIG_SPL_BUILD) && IS_ENABLED(CONFIG_CMD_NVEDIT_EFI)
        if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'e')
                return do_env_set_efi(NULL, flag, --argc, ++argv);
 #endif