mirror of
https://xff.cz/git/u-boot/
synced 2025-09-28 22:11:16 +02:00
efi_loader: allow concatenation with contained end node
Allow appending a device-path to a device-path that contains an end node as separator. We need this feature for creating boot options specifying kernel, initrd, and dtb. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
@@ -76,7 +76,7 @@ static struct efi_device_path * EFIAPI append_device_path(
|
||||
const struct efi_device_path *src2)
|
||||
{
|
||||
EFI_ENTRY("%pD, %pD", src1, src2);
|
||||
return EFI_EXIT(efi_dp_concat(src1, src2, false));
|
||||
return EFI_EXIT(efi_dp_concat(src1, src2, 0));
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user