diff options
author | Hao Wu <hao.a.wu@intel.com> | 2016-02-03 14:14:47 +0800 |
---|---|---|
committer | Hao Wu <hao.a.wu@intel.com> | 2016-02-29 13:51:08 +0800 |
commit | 20752cb8e79b3effedd9a8d34f228f9d37f9eeff (patch) | |
tree | 1740151aa377fce476e83d9f32e072c973e2323c /MdeModulePkg/Include | |
parent | 7b0a1ead7d2efa7f9eae4c2b254ff154d9c5f74f (diff) | |
download | edk2-20752cb8e79b3effedd9a8d34f228f9d37f9eeff.zip edk2-20752cb8e79b3effedd9a8d34f228f9d37f9eeff.tar.gz edk2-20752cb8e79b3effedd9a8d34f228f9d37f9eeff.tar.bz2 |
MdeModulePkg: Add RamDiskDxe driver implementation
The RamDiskDxe driver will:
1. Produce the EFI RAM Disk Protocol
2. Install RAM disk device path and block I/O related protocols on the
RAM disk device handle.
3. Install RAM disk configuration form to HII database
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hao Wu <hao.a.wu@intel.com>
Reviewed-by: Samer El-Haj-Mahmoud <elhaj@hpe.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>
Diffstat (limited to 'MdeModulePkg/Include')
-rw-r--r-- | MdeModulePkg/Include/Guid/RamDiskHii.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/MdeModulePkg/Include/Guid/RamDiskHii.h b/MdeModulePkg/Include/Guid/RamDiskHii.h new file mode 100644 index 0000000..0457ee2 --- /dev/null +++ b/MdeModulePkg/Include/Guid/RamDiskHii.h @@ -0,0 +1,25 @@ +/** @file
+ GUIDs used as HII FormSet and HII Package list GUID in RamDiskDxe driver.
+
+ Copyright (c) 2016, 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
+ which accompanies this distribution. The full text of the license may be found at
+ http://opensource.org/licenses/bsd-license.php
+
+ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+**/
+
+#ifndef __RAM_DISK_HII_GUID_H__
+#define __RAM_DISK_HII_GUID_H__
+
+#define RAM_DISK_FORM_SET_GUID \
+ { \
+ 0x2a46715f, 0x3581, 0x4a55, {0x8e, 0x73, 0x2b, 0x76, 0x9a, 0xaa, 0x30, 0xc5} \
+ }
+
+extern EFI_GUID gRamDiskFormSetGuid;
+
+#endif
|