Since we can have multiple environments now, it's better to provide a decent indication on what environments were tried and which were the one to fail and succeed.
Signed-off-by: Maxime Ripard <maxime.rip...@free-electrons.com> --- env/env.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/env/env.c b/env/env.c index 1d13220aa79b..44f9908e2c2d 100644 --- a/env/env.c +++ b/env/env.c @@ -109,12 +109,11 @@ int env_load(void) if (!drv->load) continue; + printf("Loading Environment from %s... ", drv->name); ret = drv->load(); + printf("%s\n", ret ? "Failed" : "OK"); if (!ret) return 0; - - debug("%s: Environment %s failed to load (err=%d)\n", __func__, - drv->name, ret); } return -ENODEV; -- git-series 0.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot