diff options
author | Ronald Cron <Ronald.Cron@arm.com> | 2015-02-25 19:20:57 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@Edk2> | 2015-02-25 19:20:57 +0000 |
commit | 158497a094dc6b6a2de0c539c1f9c8341aa8b499 (patch) | |
tree | 9bcbd7ad4090ad9b12c36e1abb59fac4e1c01ac2 /EmbeddedPkg/Include | |
parent | d0c1d371fba83b380326bc97a9e267070a4e725e (diff) | |
download | edk2-platforms-158497a094dc6b6a2de0c539c1f9c8341aa8b499.tar.xz |
EmbeddedPkg : Add FdtPlatformDxe driver
The FdtPlatformDxe driver installs the FDT of the platform it
is running on into the UEFI Configuration table at the end of
the DXE phase.
Please refer to the README.txt file for a global overview of
the driver.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ronald Cron <Ronald.Cron@arm.com>
Reviewed-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16933 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EmbeddedPkg/Include')
-rw-r--r-- | EmbeddedPkg/Include/Guid/Fdt.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/EmbeddedPkg/Include/Guid/Fdt.h b/EmbeddedPkg/Include/Guid/Fdt.h index f2397ff22a..74c85dc30b 100644 --- a/EmbeddedPkg/Include/Guid/Fdt.h +++ b/EmbeddedPkg/Include/Guid/Fdt.h @@ -12,12 +12,17 @@ *
**/
-#ifndef __FDT_GUID_H__
-#define __FDT_GUID_H__
+#ifndef __FDT_H__
+#define __FDT_H__
#define FDT_TABLE_GUID \
{ 0xb1b621d5, 0xf19c, 0x41a5, { 0x83, 0x0b, 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0 } }
extern EFI_GUID gFdtTableGuid;
-#endif /* __FDT_GUID_H__ */
+#define FDT_VARIABLE_GUID \
+ { 0x25a4fd4a, 0x9703, 0x4ba9, { 0xa1, 0x90, 0xb7, 0xc8, 0x4e, 0xfb, 0x3e, 0x57 } }
+
+extern EFI_GUID gFdtVariableGuid;
+
+#endif /* __FDT_H__ */
|