From patchwork Tue Jan 21 11:07:49 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Keerthy X-Patchwork-Id: 239877 List-Id: U-Boot discussion From: j-keerthy at ti.com (Keerthy) Date: Tue, 21 Jan 2020 16:37:49 +0530 Subject: [PATCH v3 10/10] env: nowhere: set default enviroment In-Reply-To: <20200121110749.28714-1-j-keerthy@ti.com> References: <20200121110749.28714-1-j-keerthy@ti.com> Message-ID: <20200121110749.28714-11-j-keerthy@ti.com> set default enviroment so that set_env calls succeed when ENV_IS_NOWHERE is alone set. Signed-off-by: Keerthy --- env/nowhere.c | 1 + 1 file changed, 1 insertion(+) diff --git a/env/nowhere.c b/env/nowhere.c index f5b0a17652..70c3b3e011 100644 --- a/env/nowhere.c +++ b/env/nowhere.c @@ -23,6 +23,7 @@ static int env_nowhere_init(void) { gd->env_addr = (ulong)&default_environment[0]; gd->env_valid = ENV_INVALID; + env_set_default(NULL, 0); return 0; }