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>
This commit is contained in:
parent
879369ea92
commit
87dac74012
1 changed files with 1 additions and 1 deletions
2
env/Kconfig
vendored
2
env/Kconfig
vendored
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue