Message ID | 20200121110749.28714-11-j-keerthy@ti.com |
---|---|
State | Superseded |
Headers | show |
Series | Add support for loading main_r5fss0_core0 | expand |
On 1/21/20 6:07 AM, Keerthy wrote: > set default enviroment so that set_env calls succeed > when ENV_IS_NOWHERE is alone set. > Capitalize first letter of a sentence. Also no need to line wrap at 50 chars.. For last line: "when only ENV_IS_NOWHERE is set." reads better. Andrew > Signed-off-by: Keerthy <j-keerthy at ti.com> > --- > 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; > } >
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; }
set default enviroment so that set_env calls succeed when ENV_IS_NOWHERE is alone set. Signed-off-by: Keerthy <j-keerthy at ti.com> --- env/nowhere.c | 1 + 1 file changed, 1 insertion(+)