1 ## @file 2 # Framework SMM driver entry point library. 3 # 4 # Register driver in SMRAM and wrapper driver's library constructors and entry point. 5 # 6 # Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 7 # 8 # This program and the accompanying materials 9 # are licensed and made available under the terms and conditions of the BSD License 10 # which accompanies this distribution. The full text of the license may be found at 11 # http://opensource.org/licenses/bsd-license.php 12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 13 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 14 # 15 # 16 ## 17 18 [Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = DxeSmmDriverEntryPoint 21 MODULE_UNI_FILE = DxeSmmDriverEntryPoint.uni 22 FILE_GUID = 79C5C7B7-1083-42a6-AD15-2A4E7C4274D7 23 MODULE_TYPE = DXE_SMM_DRIVER 24 VERSION_STRING = 1.0 25 LIBRARY_CLASS = UefiDriverEntryPoint|DXE_SMM_DRIVER 26 27 28 # 29 # The following information is for reference only and not required by the build tools. 30 # 31 # VALID_ARCHITECTURES = IA32 X64 32 # 33 34 [Sources] 35 DriverEntryPoint.c 36 37 38 [Packages] 39 MdePkg/MdePkg.dec 40 IntelFrameworkPkg/IntelFrameworkPkg.dec 41 42 43 [LibraryClasses] 44 DebugLib 45 UefiBootServicesTableLib 46 DevicePathLib 47 48 [Protocols] 49 gEfiLoadedImageProtocolGuid ## CONSUMES 50 gEfiSmmBaseProtocolGuid ## CONSUMES 51 gEfiDevicePathProtocolGuid ## CONSUMES 52 53 [Depex] 54 gEfiSmmBaseProtocolGuid 55 56