mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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>
This commit is contained in:
parent
8744d6c504
commit
344ca79509
1 changed files with 1 additions and 0 deletions
1
env/ubi.c
vendored
1
env/ubi.c
vendored
|
@ -168,6 +168,7 @@ static int env_ubi_load(void)
|
|||
|
||||
U_BOOT_ENV_LOCATION(ubi) = {
|
||||
.location = ENVL_UBI,
|
||||
ENV_NAME("UBI")
|
||||
.load = env_ubi_load,
|
||||
.save = env_save_ptr(env_ubi_save),
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue