env: add failing trace in env_erase
Add trace in env save to indicate any errors to end user and avoid
silent output when the command 'env erase' is not executed as it is
done in env_save with commit 8968288cb4
("env: add failing trace in
env_save")
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
parent
91fc785834
commit
1c44d10879
8
env/env.c
vendored
8
env/env.c
vendored
@ -311,11 +311,15 @@ int env_erase(void)
|
|||||||
if (drv) {
|
if (drv) {
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (!drv->erase)
|
if (!drv->erase) {
|
||||||
|
printf("not possible\n");
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
}
|
||||||
|
|
||||||
if (!env_has_inited(drv->location))
|
if (!env_has_inited(drv->location)) {
|
||||||
|
printf("not initialized\n");
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
}
|
||||||
|
|
||||||
printf("Erasing Environment on %s... ", drv->name);
|
printf("Erasing Environment on %s... ", drv->name);
|
||||||
ret = drv->erase();
|
ret = drv->erase();
|
||||||
|
Loading…
Reference in New Issue
Block a user