1 | ## @file
|
---|
2 | # This driver measures SMBIOS table to TPM.
|
---|
3 | #
|
---|
4 | # This driver is a sample driver to follow TCG platform specification to
|
---|
5 | # filter some fields in SMBIOS table.
|
---|
6 | # - Platform configuration information that is automatically updated,
|
---|
7 | # such as clock registers, and system unique information, such as
|
---|
8 | # asset numbers or serial numbers, MUST NOT be measured into PCR [1],
|
---|
9 | # or any other PCR.
|
---|
10 | # The OEM types are skipped and platform code can measure them by self if required.
|
---|
11 | #
|
---|
12 | # A platform may use its own policy to filter some fields in SMBIOS table.
|
---|
13 | #
|
---|
14 | # Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
|
---|
15 | #
|
---|
16 | # This program and the accompanying materials
|
---|
17 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
18 | # which accompanies this distribution. The full text of the license may be found at
|
---|
19 | # http://opensource.org/licenses/bsd-license.php
|
---|
20 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
21 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
22 | #
|
---|
23 | #
|
---|
24 | ##
|
---|
25 |
|
---|
26 | [Defines]
|
---|
27 | INF_VERSION = 0x00010005
|
---|
28 | BASE_NAME = SmbiosMeasurementDxe
|
---|
29 | MODULE_UNI_FILE = SmbiosMeasurementDxe.uni
|
---|
30 | FILE_GUID = D27FED59-ABB4-4FED-BEAD-2A878C7E4A7E
|
---|
31 | MODULE_TYPE = DXE_DRIVER
|
---|
32 | VERSION_STRING = 1.0
|
---|
33 | ENTRY_POINT = SmbiosMeasurementDriverEntryPoint
|
---|
34 |
|
---|
35 | #
|
---|
36 | # The following information is for reference only and not required by the build tools.
|
---|
37 | #
|
---|
38 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM AARCH64
|
---|
39 | #
|
---|
40 |
|
---|
41 | [Sources]
|
---|
42 | SmbiosMeasurementDxe.c
|
---|
43 |
|
---|
44 | [Packages]
|
---|
45 | MdePkg/MdePkg.dec
|
---|
46 | MdeModulePkg/MdeModulePkg.dec
|
---|
47 |
|
---|
48 | [LibraryClasses]
|
---|
49 | UefiBootServicesTableLib
|
---|
50 | MemoryAllocationLib
|
---|
51 | BaseMemoryLib
|
---|
52 | BaseLib
|
---|
53 | UefiLib
|
---|
54 | UefiDriverEntryPoint
|
---|
55 | DebugLib
|
---|
56 | TpmMeasurementLib
|
---|
57 |
|
---|
58 | [Protocols]
|
---|
59 | gEfiSmbiosProtocolGuid ## CONSUMES
|
---|
60 |
|
---|
61 | [Guids]
|
---|
62 | gEfiSmbiosTableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
---|
63 | gEfiSmbios3TableGuid ## SOMETIMES_CONSUMES ## SystemTable
|
---|
64 |
|
---|
65 | [Depex]
|
---|
66 | gEfiSmbiosProtocolGuid
|
---|
67 |
|
---|
68 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
69 | SmbiosMeasurementDxeExtra.uni
|
---|