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: Leif Lindholm <leif.lindholm@linaro.org>
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
#/** @file
 | 
						|
#
 | 
						|
#  Copyright (c) 2013-2015, ARM Ltd. All rights reserved.<BR>
 | 
						|
#  Copyright (c) 2017, Linaro. All rights reserved.
 | 
						|
#
 | 
						|
#  SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
#
 | 
						|
#
 | 
						|
#**/
 | 
						|
 | 
						|
[Defines]
 | 
						|
  INF_VERSION                    = 0x00010019
 | 
						|
  BASE_NAME                      = AndroidBootApp
 | 
						|
  FILE_GUID                      = 3a738b36-b9c5-4763-abbd-6cbd4b25f9ff
 | 
						|
  MODULE_TYPE                    = UEFI_APPLICATION
 | 
						|
  VERSION_STRING                 = 1.0
 | 
						|
  ENTRY_POINT                    = AndroidBootAppEntryPoint
 | 
						|
 | 
						|
[Sources.common]
 | 
						|
  AndroidBootApp.c
 | 
						|
 | 
						|
[LibraryClasses]
 | 
						|
  AndroidBootImgLib
 | 
						|
  BaseLib
 | 
						|
  BaseMemoryLib
 | 
						|
  DebugLib
 | 
						|
  DevicePathLib
 | 
						|
  DxeServicesTableLib
 | 
						|
  FdtLib
 | 
						|
  MemoryAllocationLib
 | 
						|
  PcdLib
 | 
						|
  PrintLib
 | 
						|
  UefiApplicationEntryPoint
 | 
						|
  UefiBootServicesTableLib
 | 
						|
  UefiLib
 | 
						|
  UefiRuntimeServicesTableLib
 | 
						|
 | 
						|
[Protocols]
 | 
						|
  gAndroidFastbootPlatformProtocolGuid
 | 
						|
  gEfiBlockIoProtocolGuid
 | 
						|
  gEfiDevicePathFromTextProtocolGuid
 | 
						|
  gEfiSimpleTextOutProtocolGuid
 | 
						|
  gEfiSimpleTextInProtocolGuid
 | 
						|
 | 
						|
[Packages]
 | 
						|
  EmbeddedPkg/EmbeddedPkg.dec
 | 
						|
  MdeModulePkg/MdeModulePkg.dec
 | 
						|
  MdePkg/MdePkg.dec
 | 
						|
 | 
						|
[Packages.ARM, Packages.AARCH64]
 | 
						|
  ArmPkg/ArmPkg.dec
 | 
						|
  ArmPlatformPkg/ArmPlatformPkg.dec
 | 
						|
 | 
						|
[Guids]
 | 
						|
  gFdtTableGuid
 | 
						|
 | 
						|
[Pcd]
 | 
						|
  gEmbeddedTokenSpaceGuid.PcdAndroidBootDevicePath
 |