mirror of
				https://git.proxmox.com/git/mirror_edk2
				synced 2025-11-04 00:36:31 +00:00 
			
		
		
		
	https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Siyuan Fu <siyuan.fu@intel.com>
		
			
				
	
	
		
			82 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
## @file
 | 
						|
#  WiFi Connection Manager.
 | 
						|
#
 | 
						|
#  This module is an example of how to make use of UEFI WiFi connection capabilities.
 | 
						|
#  User can scan, connect and diconnect to networks through UI operations.
 | 
						|
#
 | 
						|
#  Supported networks include:
 | 
						|
#  1). Open Network
 | 
						|
#  2). WPA2 Personal Network
 | 
						|
#  3). EAP Networks (EAP-TLS, EAP-TTLS/MSCHAPv2 and PEAPv0/MSCHAPv2)
 | 
						|
#
 | 
						|
#  Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
 | 
						|
#
 | 
						|
#  SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
#
 | 
						|
##
 | 
						|
 | 
						|
[Defines]
 | 
						|
  INF_VERSION               = 0x00010005
 | 
						|
  BASE_NAME                 = WifiConnectionManagerDxe
 | 
						|
  FILE_GUID                 = c6df98f2-5ec0-4a94-8c11-9a9828ef03f2
 | 
						|
  MODULE_TYPE               = DXE_DRIVER
 | 
						|
  VERSION_STRING            = 0.1
 | 
						|
  ENTRY_POINT               = WifiMgrDxeDriverEntryPoint
 | 
						|
 | 
						|
[Sources]
 | 
						|
  WifiConnectionMgrDxe.h
 | 
						|
  WifiConnectionMgrDriverBinding.h
 | 
						|
  WifiConnectionMgrConfig.h
 | 
						|
  WifiConnectionMgrMisc.h
 | 
						|
  WifiConnectionMgrImpl.h
 | 
						|
  WifiConnectionMgrConfigNVDataStruct.h
 | 
						|
  WifiConnectionMgrHiiConfigAccess.h
 | 
						|
  WifiConnectionMgrComponentName.h
 | 
						|
  WifiConnectionMgrFileUtil.h
 | 
						|
  WifiConnectionMgrDriver.c
 | 
						|
  WifiConnectionMgrComponentName.c
 | 
						|
  WifiConnectionMgrMisc.c
 | 
						|
  WifiConnectionMgrHiiConfigAccess.c
 | 
						|
  WifiConnectionMgrImpl.c
 | 
						|
  WifiConnectionMgrFileUtil.c
 | 
						|
  WifiConnectionManagerDxeStrings.uni
 | 
						|
  WifiConnectionManagerDxe.vfr
 | 
						|
  EapContext.h
 | 
						|
  WifiConnectionMgrConfigHii.h
 | 
						|
 | 
						|
[Packages]
 | 
						|
  MdePkg/MdePkg.dec
 | 
						|
  MdeModulePkg/MdeModulePkg.dec
 | 
						|
  NetworkPkg/NetworkPkg.dec
 | 
						|
 | 
						|
[LibraryClasses]
 | 
						|
  UefiDriverEntryPoint
 | 
						|
  UefiBootServicesTableLib
 | 
						|
  UefiRuntimeServicesTableLib
 | 
						|
  MemoryAllocationLib
 | 
						|
  BaseMemoryLib
 | 
						|
  BaseLib
 | 
						|
  UefiLib
 | 
						|
  DevicePathLib
 | 
						|
  DebugLib
 | 
						|
  HiiLib
 | 
						|
  PrintLib
 | 
						|
  UefiHiiServicesLib
 | 
						|
  NetLib
 | 
						|
  FileExplorerLib
 | 
						|
 | 
						|
[Protocols]
 | 
						|
  gEfiHiiConfigAccessProtocolGuid               ## PRODUCES
 | 
						|
  gEfiWiFi2ProtocolGuid                         ## TO_START
 | 
						|
  gEfiAdapterInformationProtocolGuid            ## SOMETIMES_CONSUMES
 | 
						|
  gEfiSupplicantProtocolGuid                    ## SOMETIMES_CONSUMES
 | 
						|
  gEfiEapConfigurationProtocolGuid              ## SOMETIMES_CONSUMES
 | 
						|
 | 
						|
[Guids]
 | 
						|
  gWifiConfigGuid                               ## PRODUCES  ## GUID
 | 
						|
  gEfiIfrTianoGuid                              ## CONSUMES  ## GUID (Extended IFR Guid Opcode)
 | 
						|
  gEfiAdapterInfoMediaStateGuid                 ## SOMETIMES_CONSUMES  ## GUID  # Indicate the current media state status
 | 
						|
 | 
						|
[Depex]
 | 
						|
  gEfiHiiConfigRoutingProtocolGuid
 |