From: Patrick Delaunay Date: Tue, 28 Jul 2020 09:51:14 +0000 (+0200) Subject: env: add absolute path at CONFIG_ENV_EXT4_FILE X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-logo.png?a=commitdiff_plain;h=87dac740122304dd196d090ab38edd1299130880;p=u-boot.git 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 Signed-off-by: Patrick Delaunay --- 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)