arm64: set correct length of device path end entry
The length of the Device Path End entry in the grub_linux_boot() function was incorrectly set to 0. This triggers an assert failure in debug builds of Tianocore. Set it to sizeof (grub_efi_device_path_t).
This commit is contained in:
parent
e7cfa8d5e1
commit
4d21c10199
2 changed files with 5 additions and 1 deletions
|
@ -268,7 +268,7 @@ grub_linux_boot (void)
|
|||
|
||||
mempath[1].header.type = GRUB_EFI_END_DEVICE_PATH_TYPE;
|
||||
mempath[1].header.subtype = GRUB_EFI_END_ENTIRE_DEVICE_PATH_SUBTYPE;
|
||||
mempath[1].header.length = 0;
|
||||
mempath[1].header.length = sizeof (grub_efi_device_path_t);
|
||||
|
||||
b = grub_efi_system_table->boot_services;
|
||||
status = b->load_image (0, grub_efi_image_handle,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue