Ilias Apalodimas | ec80b47 | 2020-02-21 09:55:45 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (c) 2020, Linaro Limited |
| 4 | */ |
| 5 | |
| 6 | #if !defined _EFI_LOAD_INITRD_H_ |
| 7 | #define _EFI_LOAD_INITRD_H_ |
| 8 | |
| 9 | #include <efi.h> |
| 10 | #include <efi_api.h> |
| 11 | |
| 12 | /* |
| 13 | * Vendor GUID used by Linux to identify the handle with the |
| 14 | * EFI_LOAD_FILE2_PROTOCOL and load an initial ramdisk. |
| 15 | */ |
| 16 | #define EFI_INITRD_MEDIA_GUID \ |
| 17 | EFI_GUID(0x5568e427, 0x68fc, 0x4f3d, \ |
| 18 | 0xac, 0x74, 0xca, 0x55, 0x52, 0x31, 0xcc, 0x68) |
Heinrich Schuchardt | 9ad37fe | 2021-10-15 02:33:33 +0200 | [diff] [blame] | 19 | extern const efi_guid_t efi_lf2_initrd_guid; |
Ilias Apalodimas | ec80b47 | 2020-02-21 09:55:45 +0200 | [diff] [blame] | 20 | |
| 21 | struct efi_initrd_dp { |
| 22 | struct efi_device_path_vendor vendor; |
| 23 | struct efi_device_path end; |
| 24 | } __packed; |
| 25 | |
| 26 | #endif |