summaryrefslogtreecommitdiff
path: root/env/sf.c
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2020-07-07 21:51:35 +0300
committerTom Rini <trini@konsulko.com>2020-07-31 17:13:00 +0300
commit890feecaab72a630eac3344443e053173f4ad02f (patch)
treec36661a5b3a0d8e65f813cc1f5fcf06d3f100d2c /env/sf.c
parentef9bef2bfed36424a3a6678d76d9eb7b710de1ac (diff)
downloadu-boot-890feecaab72a630eac3344443e053173f4ad02f.tar.xz
env: Discern environment coming from external storage
Add another custom environment flag which discerns environment coming from external storage from environment set by U-Boot itself. Signed-off-by: Marek Vasut <marex@denx.de> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'env/sf.c')
-rw-r--r--env/sf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/env/sf.c b/env/sf.c
index a059561cb0..937778aa37 100644
--- a/env/sf.c
+++ b/env/sf.c
@@ -172,7 +172,7 @@ static int env_sf_load(void)
CONFIG_ENV_SIZE, tmp_env2);
ret = env_import_redund((char *)tmp_env1, read1_fail, (char *)tmp_env2,
- read2_fail);
+ read2_fail, H_EXTERNAL);
spi_flash_free(env_flash);
env_flash = NULL;
@@ -265,7 +265,7 @@ static int env_sf_load(void)
goto err_read;
}
- ret = env_import(buf, 1);
+ ret = env_import(buf, 1, H_EXTERNAL);
if (!ret)
gd->env_valid = ENV_VALID;