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: Laszlo Ersek <lersek@redhat.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			724 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			724 B
		
	
	
	
		
			INI
		
	
	
	
	
	
## @file
 | 
						|
# Work with PCI capabilities in PCI config space.
 | 
						|
#
 | 
						|
# Provides functions to parse capabilities lists, and to locate, describe, read
 | 
						|
# and write capabilities. PCI config space access is abstracted away.
 | 
						|
#
 | 
						|
# Copyright (C) 2018, Red Hat, Inc.
 | 
						|
#
 | 
						|
# SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
##
 | 
						|
 | 
						|
[Defines]
 | 
						|
  INF_VERSION    = 1.27
 | 
						|
  BASE_NAME      = BasePciCapLib
 | 
						|
  FILE_GUID      = 6957540D-F7B5-4D5B-BEE4-FC14114DCD3C
 | 
						|
  MODULE_TYPE    = BASE
 | 
						|
  VERSION_STRING = 1.0
 | 
						|
  LIBRARY_CLASS  = PciCapLib
 | 
						|
 | 
						|
[Sources]
 | 
						|
  BasePciCapLib.h
 | 
						|
  BasePciCapLib.c
 | 
						|
 | 
						|
[Packages]
 | 
						|
  MdePkg/MdePkg.dec
 | 
						|
  OvmfPkg/OvmfPkg.dec
 | 
						|
 | 
						|
[LibraryClasses]
 | 
						|
  BaseMemoryLib
 | 
						|
  DebugLib
 | 
						|
  MemoryAllocationLib
 | 
						|
  OrderedCollectionLib
 |