mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
env: mmc: Add missing eMMC bootpart restoration to env erase
If the environment is stored in eMMC hardware boot partition, the environment driver first stores the currently selected eMMC boot partition, then does the requested operation, and then restores the original boot partition settings. In case the environment operation fails, the boot partition settings are also restored. The 'env erase' implementation in the MMC environment driver lacks the path which restores the boot partition. This could lead to various failure modes, like the system boots the wrong copy of bootloader etc. Fix this by filling in the missing restoration path. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Fabio Estevam <festevam@gmail.com> Cc: Jaehoon Chung <jh80.chung@samsung.com> Cc: Peng Fan <peng.fan@nxp.com> Cc: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
397b35f097
commit
f47f87f257
1 changed files with 10 additions and 4 deletions
14
env/mmc.c
vendored
14
env/mmc.c
vendored
|
@ -263,20 +263,26 @@ static int env_mmc_erase(void)
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (mmc_get_env_addr(mmc, copy, &offset))
|
||||
return CMD_RET_FAILURE;
|
||||
if (mmc_get_env_addr(mmc, copy, &offset)) {
|
||||
ret = CMD_RET_FAILURE;
|
||||
goto fini;
|
||||
}
|
||||
|
||||
ret = erase_env(mmc, CONFIG_ENV_SIZE, offset);
|
||||
|
||||
#ifdef CONFIG_ENV_OFFSET_REDUND
|
||||
copy = 1;
|
||||
|
||||
if (mmc_get_env_addr(mmc, copy, &offset))
|
||||
return CMD_RET_FAILURE;
|
||||
if (mmc_get_env_addr(mmc, copy, &offset)) {
|
||||
ret = CMD_RET_FAILURE;
|
||||
goto fini;
|
||||
}
|
||||
|
||||
ret |= erase_env(mmc, CONFIG_ENV_SIZE, offset);
|
||||
#endif
|
||||
|
||||
fini:
|
||||
fini_mmc_for_env(mmc);
|
||||
return ret;
|
||||
}
|
||||
#endif /* CONFIG_CMD_SAVEENV && !CONFIG_SPL_BUILD */
|
||||
|
|
Loading…
Reference in a new issue