1 ## @file 2 # Provides some TPM 1.2 commands 3 # 4 # This library is used by other modules to send TPM 1.2 command. 5 # 6 # Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR> 7 # This program and the accompanying materials 8 # are licensed and made available under the terms and conditions of the BSD License 9 # which accompanies this distribution. The full text of the license may be found at 10 # http://opensource.org/licenses/bsd-license.php 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 = Tpm12CommandLib 19 MODULE_UNI_FILE = Tpm12CommandLib.uni 20 FILE_GUID = C595047C-70B3-4731-99CC-A014E956D7A7 21 MODULE_TYPE = BASE 22 VERSION_STRING = 1.0 23 LIBRARY_CLASS = Tpm12CommandLib 24 25 # 26 # The following information is for reference only and not required by the build tools. 27 # 28 # VALID_ARCHITECTURES = IA32 X64 IPF 29 # 30 31 [Sources] 32 Tpm12Startup.c 33 Tpm12Ownership.c 34 Tpm12NvStorage.c 35 Tpm12GetCapability.c 36 Tpm12Pcr.c 37 Tpm12PhysicalPresence.c 38 Tpm12SelfTest.c 39 40 [Packages] 41 MdePkg/MdePkg.dec 42 SecurityPkg/SecurityPkg.dec 43 44 [LibraryClasses] 45 BaseLib 46 BaseMemoryLib 47 IoLib 48 TimerLib 49 DebugLib 50 Tpm12DeviceLib 51