mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 14:38:58 +00:00
part: check CONFIG_IS_ENABLED(ENV_SUPPORT)
In SPL environment variables may not be enabled. Suggested-by: Tom Rini <trini@konsulko.com> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
8acfd7ddce
commit
350635fe83
1 changed files with 5 additions and 3 deletions
|
@ -508,9 +508,11 @@ int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
|
|||
#endif
|
||||
|
||||
/* If no dev_part_str, use bootdevice environment variable */
|
||||
if (!dev_part_str || !strlen(dev_part_str) ||
|
||||
!strcmp(dev_part_str, "-"))
|
||||
dev_part_str = env_get("bootdevice");
|
||||
if (CONFIG_IS_ENABLED(ENV_SUPPORT)) {
|
||||
if (!dev_part_str || !strlen(dev_part_str) ||
|
||||
!strcmp(dev_part_str, "-"))
|
||||
dev_part_str = env_get("bootdevice");
|
||||
}
|
||||
|
||||
/* If still no dev_part_str, it's an error */
|
||||
if (!dev_part_str) {
|
||||
|
|
Loading…
Add table
Reference in a new issue