commit | adeec30751c3c8199dccee2fcf94da2ad41c48a4 | [log] [tgz] |
---|---|---|
author | Marek Vasut <marex@denx.de> | Tue Aug 21 15:53:33 2018 +0200 |
committer | Tom Rini <trini@konsulko.com> | Fri Aug 24 16:00:48 2018 -0400 |
tree | 4a7b9c64600bfca72f931005bdd3ad927b36fc8e | |
parent | 6e91bd9fd47327e9331d2dc14d42a3559ce7593a [diff] |
env: ubi: Add missing ENV_NAME Add missing environment name for UBI, to prevent this NULL in output: Loading Environment from <NULL>... and rather have a valid UBI there: Loading Environment from UBI... Signed-off-by: Marek Vasut <marex@denx.de>
diff --git a/env/ubi.c b/env/ubi.c index eb2346f..1dfdf0a 100644 --- a/env/ubi.c +++ b/env/ubi.c
@@ -168,6 +168,7 @@ U_BOOT_ENV_LOCATION(ubi) = { .location = ENVL_UBI, + ENV_NAME("UBI") .load = env_ubi_load, .save = env_save_ptr(env_ubi_save), };