diff options
author | Patrick Delaunay | 2020-07-02 18:48:02 +0200 |
---|---|---|
committer | Patrice Chotard | 2020-07-28 17:30:53 +0200 |
commit | 89ddbbb742fb165c03da13357e3e7ea43253f00a (patch) | |
tree | b6c929a0a422931dbf7343c3120427ea3642e848 /include | |
parent | b0cbafe5090e9e2df290db29a3483529aa804ed3 (diff) |
stm32mp1: use the command env info -q in env_check
Activate the new option -q in command "env info"
to avoid unnecessary trace during boot.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/stm32mp1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/stm32mp1.h b/include/configs/stm32mp1.h index de9f8cb9bf2..b937233797f 100644 --- a/include/configs/stm32mp1.h +++ b/include/configs/stm32mp1.h @@ -156,7 +156,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" |