summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/CapsulePei/CapsulePei.inf
diff options
context:
space:
mode:
authorjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2011-07-12 20:35:46 +0000
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2011-07-12 20:35:46 +0000
commitda58b0db33a223751779e5311c947becbfdeb639 (patch)
treec85d2bdc3f9a8738b5b2c6b2c8dcef85c06de262 /MdeModulePkg/Universal/CapsulePei/CapsulePei.inf
parent619b3e0e8d70668eca4dd5f07fbba7308c654646 (diff)
downloadedk2-platforms-da58b0db33a223751779e5311c947becbfdeb639.tar.xz
MdeModulePkg: Add Capsule PEIM
Signed-off-by: jljusten Reviewed-by: mdkinney Reviewed-by: lgao4 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12011 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/CapsulePei/CapsulePei.inf')
-rw-r--r--MdeModulePkg/Universal/CapsulePei/CapsulePei.inf64
1 files changed, 64 insertions, 0 deletions
diff --git a/MdeModulePkg/Universal/CapsulePei/CapsulePei.inf b/MdeModulePkg/Universal/CapsulePei/CapsulePei.inf
new file mode 100644
index 0000000000..c66e7720ca
--- /dev/null
+++ b/MdeModulePkg/Universal/CapsulePei/CapsulePei.inf
@@ -0,0 +1,64 @@
+## @file
+# Component description file for Capsule module.
+#
+# Capsule update module supports EFI and UEFI.
+#
+# Copyright (c) 2006 - 2010, 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.
+#
+##
+
+[Defines]
+ INF_VERSION = 0x00010005
+ BASE_NAME = CapsulePei
+ FILE_GUID = C779F6D8-7113-4AA1-9648-EB1633C7D53B
+ MODULE_TYPE = PEIM
+ VERSION_STRING = 1.0
+
+ ENTRY_POINT = CapsuleMain
+
+#
+# The following information is for reference only and not required by the build tools.
+#
+# VALID_ARCHITECTURES = IA32 X64 IPF EBC
+#
+
+[Sources]
+ UefiCapsule.c
+ Capsule.h
+
+[Packages]
+ MdePkg/MdePkg.dec
+ MdeModulePkg/MdeModulePkg.dec
+
+
+[LibraryClasses]
+ HobLib
+ BaseMemoryLib
+ PeiServicesLib
+ PeimEntryPoint
+ DebugLib
+ PeiServicesTablePointerLib
+ PrintLib
+
+[Guids]
+ gEfiCapsuleVendorGuid # ALWAYS_CONSUMED
+
+
+[Ppis]
+ gEfiPeiReadOnlyVariable2PpiGuid # PPI ALWAYS_CONSUMED
+ gPeiCapsulePpiGuid # PPI ALWAYS_CONSUMED
+
+
+[Depex]
+ gEfiPeiReadOnlyVariable2PpiGuid
+
+