From: xypron.glpk@gmx.de Date: Tue, 11 Jul 2017 20:06:23 +0000 (+0200) Subject: efi_loader: provide a sufficient number of protocols X-Git-Tag: v2017.09-rc1~13^2~38 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=011f432745ae7fdb645e16c03382a4181d262619;p=oweals%2Fu-boot.git efi_loader: provide a sufficient number of protocols Four protocols per object is too few to run iPXE. Let's raise the number of protocols per object to eight. Signed-off-by: Heinrich Schuchardt Signed-off-by: Alexander Graf --- diff --git a/include/efi_loader.h b/include/efi_loader.h index c620652307..989e5809ba 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -65,8 +65,8 @@ struct efi_handler { struct efi_object { /* Every UEFI object is part of a global object list */ struct list_head link; - /* We support up to 4 "protocols" an object can be accessed through */ - struct efi_handler protocols[4]; + /* We support up to 8 "protocols" an object can be accessed through */ + struct efi_handler protocols[8]; /* The object spawner can either use this for data or as identifier */ void *handle; };