diff options
author | Dandan Bi <dandan.bi@intel.com> | 2019-04-03 10:57:12 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2019-04-10 14:11:48 +0800 |
commit | 58e8a1d8044f7cac85e76f2cc62c68413f3e24b4 (patch) | |
tree | ca2900eb4a20014ec2166ad768833879789bffa6 /MdeModulePkg/Include | |
parent | 0108a91c552666e0c6fa972cdbee0990aa5c7747 (diff) | |
download | edk2-58e8a1d8044f7cac85e76f2cc62c68413f3e24b4.tar.gz |
MdeModulePkg: Move BaseUefiTianoCustomDecompressLib to
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1683
We will remove IntelFrameworkModulePkg,
but BaseUefiTianoCustomDecompressLib may still need
to be used. So move BaseUefiTianoCustomDecompressLib
from IntelFrameworkModulePkg to MdeModulePkg.
Cc: Liming Gao <liming.gao@intel.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Hao Wu <hao.a.wu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Hao Wu <hao.a.wu@intel.com>
Diffstat (limited to 'MdeModulePkg/Include')
-rw-r--r-- | MdeModulePkg/Include/Guid/TianoDecompress.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/MdeModulePkg/Include/Guid/TianoDecompress.h b/MdeModulePkg/Include/Guid/TianoDecompress.h new file mode 100644 index 0000000000..40f74f88f3 --- /dev/null +++ b/MdeModulePkg/Include/Guid/TianoDecompress.h @@ -0,0 +1,22 @@ +/** @file
+ Tiano Custom decompress Guid definition.
+
+Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
+SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#ifndef __TIANO_CUSTOM_DECOMPRESS_GUID_H__
+#define __TIANO_CUSTOM_DECOMPRESS_GUID_H__
+
+///
+/// The Global ID used to identify a section of an FFS file of type
+/// EFI_SECTION_GUID_DEFINED, whose contents have been compressed using
+/// Tiano Custom compression.
+///
+#define TIANO_CUSTOM_DECOMPRESS_GUID \
+ { 0xA31280AD, 0x481E, 0x41B6, { 0x95, 0xE8, 0x12, 0x7F, 0x4C, 0x98, 0x47, 0x79 } }
+
+extern GUID gTianoCustomDecompressGuid;
+
+#endif
|