summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Include/Guid
diff options
context:
space:
mode:
authorDandan Bi <dandan.bi@intel.com>2019-04-03 10:57:12 +0800
committerLiming Gao <liming.gao@intel.com>2019-04-10 14:11:48 +0800
commit58e8a1d8044f7cac85e76f2cc62c68413f3e24b4 (patch)
treeca2900eb4a20014ec2166ad768833879789bffa6 /MdeModulePkg/Include/Guid
parent0108a91c552666e0c6fa972cdbee0990aa5c7747 (diff)
downloadedk2-58e8a1d8044f7cac85e76f2cc62c68413f3e24b4.tar.gz
edk2-58e8a1d8044f7cac85e76f2cc62c68413f3e24b4.tar.bz2
edk2-58e8a1d8044f7cac85e76f2cc62c68413f3e24b4.zip
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/Guid')
-rw-r--r--MdeModulePkg/Include/Guid/TianoDecompress.h22
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