diff options
| author | Michael Brown | 2014-07-14 17:13:55 +0200 |
|---|---|---|
| committer | Michael Brown | 2014-07-14 17:13:55 +0200 |
| commit | cff0103bd2a55cadff2a9aed6e3f8024baab368c (patch) | |
| tree | d68fcf544a221f4c1bef2c0460aaf51ea092b8a4 /src/include/ipxe/efi/Protocol/DevicePath.h | |
| parent | [netdevice] Reset network device index when last device is unregistered (diff) | |
| download | ipxe-cff0103bd2a55cadff2a9aed6e3f8024baab368c.tar.gz ipxe-cff0103bd2a55cadff2a9aed6e3f8024baab368c.tar.xz ipxe-cff0103bd2a55cadff2a9aed6e3f8024baab368c.zip | |
[efi] Update EDK2 headers
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/efi/Protocol/DevicePath.h')
| -rw-r--r-- | src/include/ipxe/efi/Protocol/DevicePath.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/include/ipxe/efi/Protocol/DevicePath.h b/src/include/ipxe/efi/Protocol/DevicePath.h index cc4c927df..a305df575 100644 --- a/src/include/ipxe/efi/Protocol/DevicePath.h +++ b/src/include/ipxe/efi/Protocol/DevicePath.h @@ -5,7 +5,7 @@ from a software point of view. The path must persist from boot to boot, so it can not contain things like PCI bus numbers that change from boot to boot. -Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR> +Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License that accompanies this distribution. The full text of the license may be found at @@ -788,6 +788,16 @@ typedef struct { } SASEX_DEVICE_PATH; /// +/// NvmExpress Namespace Device Path SubType. +/// +#define MSG_NVME_NAMESPACE_DP 0x17 +typedef struct { + EFI_DEVICE_PATH_PROTOCOL Header; + UINT32 NamespaceId; + UINT64 NamespaceUuid; +} NVME_NAMESPACE_DEVICE_PATH; + +/// /// iSCSI Device Path SubType /// #define MSG_ISCSI_DP 0x13 @@ -1085,6 +1095,7 @@ typedef union { UART_FLOW_CONTROL_DEVICE_PATH UartFlowControl; SAS_DEVICE_PATH Sas; SASEX_DEVICE_PATH SasEx; + NVME_NAMESPACE_DEVICE_PATH NvmeNamespace; HARDDRIVE_DEVICE_PATH HardDrive; CDROM_DEVICE_PATH CD; @@ -1134,6 +1145,7 @@ typedef union { UART_FLOW_CONTROL_DEVICE_PATH *UartFlowControl; SAS_DEVICE_PATH *Sas; SASEX_DEVICE_PATH *SasEx; + NVME_NAMESPACE_DEVICE_PATH *NvmeNamespace; HARDDRIVE_DEVICE_PATH *HardDrive; CDROM_DEVICE_PATH *CD; |
