diff options
| author | Marek Vasut <[email protected]> | 2020-07-07 20:51:35 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-07-31 10:13:00 -0400 |
| commit | 890feecaab72a630eac3344443e053173f4ad02f (patch) | |
| tree | c36661a5b3a0d8e65f813cc1f5fcf06d3f100d2c /env/flash.c | |
| parent | ef9bef2bfed36424a3a6678d76d9eb7b710de1ac (diff) | |
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 <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'env/flash.c')
| -rw-r--r-- | env/flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/env/flash.c b/env/flash.c index 3198147c380..722d5adf8b6 100644 --- a/env/flash.c +++ b/env/flash.c @@ -351,7 +351,7 @@ static int env_flash_load(void) "reading environment; recovered successfully\n\n"); #endif /* CONFIG_ENV_ADDR_REDUND */ - return env_import((char *)flash_addr, 1); + return env_import((char *)flash_addr, 1, H_EXTERNAL); } #endif /* LOADENV */ |
