hwconfig: Allow to use restricted env
authorPali Rohár <pali@kernel.org>
Sun, 7 Aug 2022 19:06:04 +0000 (21:06 +0200)
committerTom Rini <trini@konsulko.com>
Sat, 20 Aug 2022 22:12:51 +0000 (18:12 -0400)
During early boot phase GD_FLG_ENV_READY is not set but env_get() may work
when env is ready in restricted mode. Do not fail with error message
"WARNING: Calling __hwconfig without a buffer and before environment is ready"
when env is already working by checking for ENV_VALID flag.

Signed-off-by: Pali Rohár <pali@kernel.org>
common/hwconfig.c

index 43566b8..cac0b63 100644 (file)
@@ -78,7 +78,7 @@ static const char *__hwconfig(const char *opt, size_t *arglen,
 
        /* if we are passed a buffer use it, otherwise try the environment */
        if (!env_hwconfig) {
-               if (!(gd->flags & GD_FLG_ENV_READY)) {
+               if (!(gd->flags & GD_FLG_ENV_READY) && gd->env_valid != ENV_VALID) {
                        printf("WARNING: Calling __hwconfig without a buffer "
                                        "and before environment is ready\n");
                        return NULL;