Message ID | 20241111210959.560738-14-adrianox@gmail.com |
---|---|
State | Superseded, archived |
Delegated to: | Heinrich Schuchardt |
Headers | show |
Series | efi_loader: efi http and ipconfig drivers | expand |
Hi Adriano, You forgot to add reviewed tags on this one. I am reviewing the rest of the patches, so please go through the tags and add them when you send a v4. Thanks /Ilias On Mon, 11 Nov 2024 at 23:10, Adriano Cordova <adrianox@gmail.com> wrote: > > From: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> > > Add long texts for > > * EFI HTTP Protocol > * EFI HTTP Service Binding Protocol > * EFI IPv4 Configuration II Protocol > > to the uuid library. > > Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> > Signed-off-by: Adriano Cordova <adrianox@gmail.com> > --- > > (no changes since v2) > > lib/uuid.c | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > diff --git a/lib/uuid.c b/lib/uuid.c > index c6a27b7d04..3b2cf60fe1 100644 > --- a/lib/uuid.c > +++ b/lib/uuid.c > @@ -174,6 +174,20 @@ static const struct { > "Firmware Management", > EFI_FIRMWARE_MANAGEMENT_PROTOCOL_GUID > }, > +#if IS_ENABLED(CONFIG_EFI_HTTP_PROTOCOL) > + { > + "HTTP", > + EFI_HTTP_PROTOCOL_GUID, > + }, > + { > + "HTTP Service Binding", > + EFI_HTTP_SERVICE_BINDING_PROTOCOL_GUID, > + }, > + { > + "IPv4 Config2", > + EFI_IP4_CONFIG2_PROTOCOL_GUID, > + }, > +#endif > /* Configuration table GUIDs */ > { > "ACPI table", > -- > 2.43.0 >
diff --git a/lib/uuid.c b/lib/uuid.c index c6a27b7d04..3b2cf60fe1 100644 --- a/lib/uuid.c +++ b/lib/uuid.c @@ -174,6 +174,20 @@ static const struct { "Firmware Management", EFI_FIRMWARE_MANAGEMENT_PROTOCOL_GUID }, +#if IS_ENABLED(CONFIG_EFI_HTTP_PROTOCOL) + { + "HTTP", + EFI_HTTP_PROTOCOL_GUID, + }, + { + "HTTP Service Binding", + EFI_HTTP_SERVICE_BINDING_PROTOCOL_GUID, + }, + { + "IPv4 Config2", + EFI_IP4_CONFIG2_PROTOCOL_GUID, + }, +#endif /* Configuration table GUIDs */ { "ACPI table",