diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-06-27 20:38:02 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2018-07-02 09:23:28 +0800 |
commit | bb68c7fba07621ae4dfe3ea10737fa18049d3e51 (patch) | |
tree | 73e9c3200cc162198f851ed9d808120be1881dbf | |
parent | abe47ca728f5b22d1ec9fcf609e00b331c4d5273 (diff) | |
download | u-boot-bb68c7fba07621ae4dfe3ea10737fa18049d3e51.zip u-boot-bb68c7fba07621ae4dfe3ea10737fa18049d3e51.tar.gz u-boot-bb68c7fba07621ae4dfe3ea10737fa18049d3e51.tar.bz2 |
efi_loader: Increase number of configuration tables to 16
At present the number of configuration tables is set to 2. By
looking at which tables the Linux EFI stub or iPXE can process,
it looks 16 is a reasonable number.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index 50d3115..261d66d 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -43,7 +43,7 @@ static bool efi_is_direct_boot = true; * In most cases we want to pass an FDT to the payload, so reserve one slot of * config table space for it. The pointer gets populated by do_bootefi_exec(). */ -static struct efi_configuration_table __efi_runtime_data efi_conf_table[2]; +static struct efi_configuration_table __efi_runtime_data efi_conf_table[16]; #ifdef CONFIG_ARM /* |