From ac3c4ac3b0b5db33dcca7aaf8cf543d0dc97e98e Mon Sep 17 00:00:00 2001 From: no92 Date: Sun, 22 Dec 2024 14:53:24 +0100 Subject: [PATCH] pxe: pass EFI device handle --- common/pxe/tftp.s2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common/pxe/tftp.s2.c b/common/pxe/tftp.s2.c index e871270a6..76b809245 100644 --- a/common/pxe/tftp.s2.c +++ b/common/pxe/tftp.s2.c @@ -190,6 +190,7 @@ struct file_handle *tftp_open(struct volume *part, const char *server_addr, cons struct file_handle *handle = ext_mem_alloc(sizeof(struct file_handle)); + handle->efi_part_handle = part->efi_handle; handle->size = file_size; handle->is_memfile = true;