Skip to content
Snippets Groups Projects
Commit 5758ff73 authored by Troy Kisky's avatar Troy Kisky
Browse files

env: common: call board_set_default_env() at end of set_default_env

parent 9815abea
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,10 @@ char *env_get_default(const char *name)
return ret_val;
}
void __weak board_set_default_env(void)
{
}
void set_default_env(const char *s)
{
int flags = 0;
......@@ -87,6 +91,7 @@ void set_default_env(const char *s)
gd->flags |= GD_FLG_ENV_READY;
gd->flags |= GD_FLG_ENV_DEFAULT;
board_set_default_env();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment