Add LINUX_EFI_INITRD_MEDIA_GUID to our collection of GUID definitions, it can be used in a media device path to specify a Linux style initrd that can be loaded by the OS using the LoadFile2 protocol. Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2564 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			446 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			446 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /** @file
 | |
|   GUID definition for the Linux Initrd media device path
 | |
| 
 | |
|   Copyright (c) 2020, Arm, Ltd. All rights reserved.<BR>
 | |
| 
 | |
|   SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| **/
 | |
| 
 | |
| #ifndef LINUX_EFI_INITRD_MEDIA_GUID_H__
 | |
| #define LINUX_EFI_INITRD_MEDIA_GUID_H__
 | |
| 
 | |
| #define LINUX_EFI_INITRD_MEDIA_GUID \
 | |
|   {0x5568e427, 0x68fc, 0x4f3d, {0xac, 0x74, 0xca, 0x55, 0x52, 0x31, 0xcc, 0x68}}
 | |
| 
 | |
| extern EFI_GUID gLinuxEfiInitrdMediaGuid;
 | |
| 
 | |
| #endif
 |