mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
efi_loader: Increase path string to 32 characters
Whenever we want to tell our payload about a path, we limit ourselves to a reasonable amount of characters. So far we only passed in device names - exceeding 16 chars was unlikely there. However by now we also pass real file path information, so let's increase the limit to 32 characters. That way common paths like "boot/efi/bootaa64.efi" fit just fine. Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
c07ad7c035
commit
ecbe1a07c5
3 changed files with 4 additions and 4 deletions
|
@ -259,7 +259,7 @@ struct efi_device_path {
|
|||
|
||||
struct efi_device_path_file_path {
|
||||
struct efi_device_path dp;
|
||||
u16 str[16];
|
||||
u16 str[32];
|
||||
};
|
||||
|
||||
#define BLOCK_IO_GUID \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue