[U-Boot] [RFC] env: Fix errors printing on env loading
Sam Protsenko
semen.protsenko at linaro.org
Wed Jul 18 21:37:36 UTC 2018
This is just a draft to discuss ideas related to "Make U-Boot log great
again" thread.
With this patch we will have something like this:
Attempting to load environment from FAT:
MMC: no card present
** Bad device mmc 0 **
Failed (-5)
Attempting to load environment from MMC: OK
instead of this:
Loading Environment from FAT... MMC: no card present
** Bad device mmc 0 **
Failed (-5)
Loading Environment from MMC... OK
The only way I see to do so is to use ASCII escape codes for moving the
cursor (in non-error case).
I'd also like to add prefixes to error messages, like it's done in [2],
but it requires adding one pointer to global data struct.
[1] https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_sequences
[2] https://lists.denx.de/pipermail/u-boot/2018-July/335072.html
Signed-off-by: Sam Protsenko <semen.protsenko at linaro.org>
---
env/env.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/env/env.c b/env/env.c
index 5c0842ac07..a674ac2eab 100644
--- a/env/env.c
+++ b/env/env.c
@@ -187,6 +187,7 @@ int env_load(void)
for (prio = 0; (drv = env_driver_lookup(ENVOP_LOAD, prio)); prio++) {
int ret;
+ char msg[75];
if (!drv->load)
continue;
@@ -194,12 +195,17 @@ int env_load(void)
if (!env_has_inited(drv->location))
continue;
- printf("Loading Environment from %s... ", drv->name);
+ snprintf(msg, 75, "Attempting to load environment from %s:\n",
+ drv->name);
+ puts(msg);
ret = drv->load();
- if (ret)
+ if (ret) {
printf("Failed (%d)\n", ret);
- else
- printf("OK\n");
+ } else {
+ size_t len = strlen(msg);
+
+ printf("\033[1A\033[%zuC OK\n", len - 1);
+ }
if (!ret)
return 0;
--
2.18.0
More information about the U-Boot
mailing list