console: update silent tag after env load

Update the "silent" property with the variable "silent" get from
saved environment, it solves the issue when:
- CONFIG_SILENT_CONSOLE and CONFIG_SYS_CONSOLE_IS_IN_ENV are activated
- silent is not defined in default environment
- silent is requested in saved environment with:
  > env set silent 1; env save

On next reboot the console is not disabled as expected after relocation
and the environment load from flash (the callback is not called when
the INSERT is requested in the created hash table)

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
This commit is contained in:
Patrick Delaunay 2019-08-02 14:58:09 +02:00 committed by Tom Rini
parent 97f3c09706
commit bf46be7216
1 changed files with 4 additions and 0 deletions

View File

@ -793,6 +793,9 @@ int console_init_r(void)
int iomux_err = 0;
#endif
/* update silent for env loaded from flash (initr_env) */
console_update_silent();
/* set default handlers at first */
gd->jt->getc = serial_getc;
gd->jt->tstc = serial_tstc;
@ -884,6 +887,7 @@ int console_init_r(void)
struct list_head *pos;
struct stdio_dev *dev;
/* update silent for env loaded from flash (initr_env) */
console_update_silent();
#ifdef CONFIG_SPLASH_SCREEN