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: Hao Wu <hao.a.wu@intel.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			748 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			748 B
		
	
	
	
		
			C
		
	
	
	
	
	
/** @file
 | 
						|
  This file defines the debug agent GUID for HOB and configuration table.
 | 
						|
 | 
						|
  Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
 | 
						|
  SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
 | 
						|
**/
 | 
						|
 | 
						|
#ifndef __EFI_DEBUG_AGENT_GUID_H__
 | 
						|
#define __EFI_DEBUG_AGENT_GUID_H__
 | 
						|
 | 
						|
///
 | 
						|
/// This guid is used as a variable GUID for the capsule variable
 | 
						|
/// if the capsule pointer is passed through reset via a variable.
 | 
						|
///
 | 
						|
/// This guid is also used as a hob GUID for the capsule data
 | 
						|
/// when the capsule pointer is passed from PEI phase to DXE phase.
 | 
						|
///
 | 
						|
#define EFI_DEBUG_AGENT_GUID  \
 | 
						|
  { \
 | 
						|
    0x865a5a9b, 0xb85d, 0x474c, { 0x84, 0x55, 0x65, 0xd1, 0xbe, 0x84, 0x4b, 0xe2 } \
 | 
						|
  }
 | 
						|
 | 
						|
extern EFI_GUID gEfiDebugAgentGuid;
 | 
						|
 | 
						|
#endif
 |