Message ID | 20200615144201.23220-1-patrick.delaunay@st.com |
---|---|
State | Accepted |
Commit | 89ddbbb742fb165c03da13357e3e7ea43253f00a |
Headers | show |
Series | stm32mp1: use the command env info -q in env_check | expand |
diff --git a/include/configs/stm32mp1.h b/include/configs/stm32mp1.h index e927787be0..038a639843 100644 --- a/include/configs/stm32mp1.h +++ b/include/configs/stm32mp1.h @@ -155,7 +155,7 @@ "splashimage=0xc4300000\0" \ "ramdisk_addr_r=0xc4400000\0" \ "altbootcmd=run bootcmd\0" \ - "env_check=if env info -p -d; then env save; fi\0" \ + "env_check=if env info -p -d -q; then env save; fi\0" \ STM32MP_BOOTCMD \ BOOTENV \ "boot_net_usb_start=true\0"
Activate the new option -q in command "env info" to avoid unnecessary trace during boot. Hi, This patch was previous included in V3 serie 158105. This patch have dependency with serie 183438 for -q otpion and with serie 183387 for stm32mp1 env_check update. END Signed-off-by: Patrick Delaunay <patrick.delaunay at st.com> --- include/configs/stm32mp1.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)