mirror of https://github.com/acidanthera/audk.git
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
|