BZ#: 2908 https://bugzilla.tianocore.org/show_bug.cgi?id=2908 Implementation of EFI EX Protocol according to UEFI spec 2.8 Section 29.7.2 EFI REST EX Protocol. This is the network stack based EFI REST EX protocol instance. Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com> Signed-off-by: Siyuan Fu <siyuan.fu@intel.com> Signed-off-by: Fan Wang <fan.wang@intel.com> Signed-off-by: Ting Ye <ting.ye@intel.com> Signed-off-by: Abner Chang <abner.chang@hpe.com> Cc: Jiaxin Wu <jiaxin.wu@intel.com> Cc: Siyuan Fu <siyuan.fu@intel.com> Cc: Fan Wang <fan.wang@intel.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Nickle Wang <nickle.wang@hpe.com> Cc: Peter O'Hanley <peter.ohanley@hpe.com> Reviewed-by: Nickle Wang <nickle.wang@hpe.com>
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
| ## @file
 | |
| #  Implementation of Redfish EFI_REST_EX_PROTOCOL interfaces.
 | |
| #
 | |
| #  Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
 | |
| #  (C) Copyright 2020 Hewlett Packard Enterprise Development LP<BR>
 | |
| #
 | |
| #  SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| #
 | |
| ##
 | |
| 
 | |
| [Defines]
 | |
|   INF_VERSION               = 0x0001001b
 | |
|   BASE_NAME                 = RedfishRestExDxe
 | |
|   FILE_GUID                 = B64702DA-E6B5-43c8-8CE8-D253071E9D6C
 | |
|   MODULE_TYPE               = UEFI_DRIVER
 | |
|   VERSION_STRING            = 1.0
 | |
|   ENTRY_POINT               = RedfishRestExDriverEntryPoint
 | |
|   UNLOAD_IMAGE              = NetLibDefaultUnload
 | |
|   MODULE_UNI_FILE           = RedfishRestExDxe.uni
 | |
| 
 | |
| [Packages]
 | |
|   MdePkg/MdePkg.dec
 | |
|   MdeModulePkg/MdeModulePkg.dec
 | |
|   NetworkPkg/NetworkPkg.dec
 | |
|   RedfishPkg/RedfishPkg.dec
 | |
| 
 | |
| [Sources]
 | |
|   ComponentName.c
 | |
|   RedfishRestExDriver.c
 | |
|   RedfishRestExDriver.h
 | |
|   RedfishRestExImpl.c
 | |
|   RedfishRestExProtocol.c
 | |
|   RedfishRestExInternal.h
 | |
| 
 | |
| [LibraryClasses]
 | |
|   BaseLib
 | |
|   BaseMemoryLib
 | |
|   DebugLib
 | |
|   DevicePathLib
 | |
|   DpcLib
 | |
|   HttpLib
 | |
|   HttpIoLib
 | |
|   PrintLib
 | |
|   MemoryAllocationLib
 | |
|   NetLib
 | |
|   UefiLib
 | |
|   UefiBootServicesTableLib
 | |
|   UefiDriverEntryPoint
 | |
|   UefiRuntimeServicesTableLib
 | |
| 
 | |
| [Protocols]
 | |
|   gEfiRestExServiceBindingProtocolGuid            ## BY_START
 | |
|   gEfiRestExProtocolGuid                          ## BY_START
 | |
|   gEfiHttpServiceBindingProtocolGuid              ## TO_START
 | |
|   gEfiHttpProtocolGuid                            ## TO_START
 | |
|   gEfiDevicePathProtocolGuid                      ## TO_START
 | |
| 
 | |
| [Pcd]
 | |
|   gEfiRedfishPkgTokenSpaceGuid.PcdRedfishRestExServiceAccessModeInBand   ## CONSUMES
 | |
| 
 | |
| [UserExtensions.TianoCore."ExtraFiles"]
 | |
|   RedfishRestExDxeExtra.uni
 | |
| 
 |