1 | ## @file
|
---|
2 | # CPU Features PEIM driver.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
|
---|
5 | # This program and the accompanying materials
|
---|
6 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
7 | # which accompanies this distribution. The full text of the license may be found at
|
---|
8 | # http://opensource.org/licenses/bsd-license.php
|
---|
9 | #
|
---|
10 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
11 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
12 | #
|
---|
13 | ##
|
---|
14 |
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010005
|
---|
17 | BASE_NAME = CpuFeaturesPei
|
---|
18 | MODULE_UNI_FILE = CpuFeaturesPei.uni
|
---|
19 | FILE_GUID = 183BB3E1-A1E5-4445-8AC9-0E83B6547E0E
|
---|
20 | MODULE_TYPE = PEIM
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 |
|
---|
23 | ENTRY_POINT = CpuFeaturesPeimInitialize
|
---|
24 |
|
---|
25 | [Packages]
|
---|
26 | MdePkg/MdePkg.dec
|
---|
27 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
28 |
|
---|
29 | [LibraryClasses]
|
---|
30 | BaseLib
|
---|
31 | DebugLib
|
---|
32 | PeimEntryPoint
|
---|
33 | PeiServicesLib
|
---|
34 | RegisterCpuFeaturesLib
|
---|
35 | HobLib
|
---|
36 |
|
---|
37 | [Sources]
|
---|
38 | CpuFeaturesPei.c
|
---|
39 |
|
---|
40 | [Guids]
|
---|
41 | gEdkiiCpuFeaturesInitDoneGuid ## PRODUCES ## UNDEFINED # PPI GUID installed
|
---|
42 |
|
---|
43 | [Pcd]
|
---|
44 | gUefiCpuPkgTokenSpaceGuid.PcdCpuFeaturesInitOnS3Resume ## CONSUMES
|
---|
45 |
|
---|
46 | [Depex]
|
---|
47 | TRUE
|
---|
48 |
|
---|
49 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
50 | CpuFeaturesPeiExtra.uni
|
---|