From: Masami Hiramatsu Date: Mon, 12 Jul 2021 09:05:17 +0000 (+0900) Subject: efi_loader: Fix to set bootdev_root correctly if bootdev found X-Git-Tag: v2021.10~108^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b0b1449b3be9b93ecc57d91b0cb18ed81fc8a1ee;p=platform%2Fkernel%2Fu-boot.git efi_loader: Fix to set bootdev_root correctly if bootdev found Fix find_boot_device() to set bootdev_root if it finds the bootdev from BootNext. Currently it sets the bootdev_root only when it finds bootdev from BootOrder. Fixes: c74cd8bd08d1 ("efi_loader: capsule: add capsule_on_disk support") Signed-off-by: Masami Hiramatsu Accked-by: Ilias Apalodimas Reviewed-by: Heinrich Schuchardt --- diff --git a/lib/efi_loader/efi_capsule.c b/lib/efi_loader/efi_capsule.c index bef9d61..b878e71 100644 --- a/lib/efi_loader/efi_capsule.c +++ b/lib/efi_loader/efi_capsule.c @@ -646,7 +646,7 @@ static efi_status_t find_boot_device(void) ret = get_dp_device(boot_var16, &boot_dev); if (ret == EFI_SUCCESS) { if (device_is_present_and_system_part(boot_dev)) { - goto out; + goto found; } else { efi_free_pool(boot_dev); boot_dev = NULL; @@ -689,6 +689,7 @@ skip: efi_free_pool(boot_dev); boot_dev = NULL; } +found: if (boot_dev) { u16 *path_str;