1 ## @file 2 # Provides a secure platform-specific method to detect physically present user. 3 # 4 # Copyright (c) 2013 Intel Corporation. 5 # 6 # This program and the accompanying materials 7 # are licensed and made available under the terms and conditions of the BSD License 8 # which accompanies this distribution. The full text of the license may be found at 9 # http://opensource.org/licenses/bsd-license.php 10 # 11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 # 14 ## 15 16 [Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = PlatformSecureLib 19 FILE_GUID = 38BB5221-F685-469f-846E-F1C508FC5F4A 20 MODULE_TYPE = DXE_DRIVER 21 VERSION_STRING = 1.0 22 LIBRARY_CLASS = PlatformSecureLib|DXE_RUNTIME_DRIVER DXE_SMM_DRIVER DXE_DRIVER 23 CONSTRUCTOR = PlatformSecureLibInitialize 24 25 # 26 # The following information is for reference only and not required by the build tools. 27 # 28 # VALID_ARCHITECTURES = IA32 29 # 30 31 [Sources] 32 PlatformSecureLib.c 33 34 [Packages] 35 MdePkg/MdePkg.dec 36 QuarkSocPkg/QuarkSocPkg.dec 37 QuarkPlatformPkg/QuarkPlatformPkg.dec 38 39 [LibraryClasses] 40 DebugLib 41 PlatformHelperLib 42 UefiBootServicesTableLib 43 I2cLib 44 45 [Pcd] 46 gQuarkPlatformTokenSpaceGuid.PcdPlatformType 47 gQuarkPlatformTokenSpaceGuid.PcdUserIsPhysicallyPresent 48