diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2020-07-28 11:51:14 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-31 10:13:00 -0400 |
commit | 87dac740122304dd196d090ab38edd1299130880 (patch) | |
tree | 43a28223b16d10e9d1169fb47c74596ba75410b8 | |
parent | 879369ea92b97639c69b70829dbbce6d1aabb14c (diff) | |
download | u-boot-87dac740122304dd196d090ab38edd1299130880.tar.gz u-boot-87dac740122304dd196d090ab38edd1299130880.tar.bz2 u-boot-87dac740122304dd196d090ab38edd1299130880.zip |
env: add absolute path at CONFIG_ENV_EXT4_FILE
Add the absolute path to the default value of
CONFIG_ENV_EXT4_FILE = "/uboot.env".
This patch avoid the error :
Saving Environment to EXT4... File System is consistent
Please supply Absolute path
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
-rw-r--r-- | env/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/env/Kconfig b/env/Kconfig index 4113628f49..dcc525d4ed 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -479,7 +479,7 @@ config ENV_EXT4_DEVICE_AND_PART config ENV_EXT4_FILE string "Name of the EXT4 file to use for the environment" depends on ENV_IS_IN_EXT4 - default "uboot.env" + default "/uboot.env" help It's a string of the EXT4 file name. This file use to store the environment (explicit path to the file) |