blob: ebf8d1f9b84b1733ad886915c1e0415a4e1f7141 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
## @file
# DSC file for defining Pcd of advanced features.
#
# This file is intended to be included into another package so advanced features
# can be conditionally built by enabling the respective feature via its FeaturePCD.
#
# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
#
# The section references the package DEC files,
# it allow a FeaturePCD to be used in a conditional statement
#
[Packages]
MdePkg/MdePkg.dec
#
# Debugging features
#
AcpiDebugFeaturePkg/AcpiDebugFeaturePkg.dec
BeepDebugFeaturePkg/BeepDebugFeaturePkg.dec
PostCodeDebugFeaturePkg/PostCodeDebugFeaturePkg.dec
Usb3DebugFeaturePkg/Usb3DebugFeaturePkg.dec
#
# Networking features
#
NetworkFeaturePkg/NetworkFeaturePkg.dec
#
# OutOfBandManagement features
#
IpmiFeaturePkg/IpmiFeaturePkg.dec
SpcrFeaturePkg/SpcrFeaturePkg.dec
AsfFeaturePkg/AsfFeaturePkg.dec
#
# PowerManagement features
#
S3FeaturePkg/S3FeaturePkg.dec
#
# SystemInformation features
#
SmbiosFeaturePkg/SmbiosFeaturePkg.dec
#
# UserInterface features
#
LogoFeaturePkg/LogoFeaturePkg.dec
UserAuthFeaturePkg/UserAuthFeaturePkg.dec
VirtualKeyboardFeaturePkg/VirtualKeyboardFeaturePkg.dec
#
# Individual features
#
PlatformPayloadFeaturePkg/PlatformPayloadFeaturePkg.dec
#
# The section below sets all PCDs to FALSE in this DSC file so the feature is not enabled by default.
# Board can set PCDs to TRUE in its DSC file to enable a subset of advanced features
#
[PcdsFeatureFlag]
gAcpiDebugFeaturePkgTokenSpaceGuid.PcdAcpiDebugFeatureEnable |FALSE
gAcpiDebugFeaturePkgTokenSpaceGuid.PcdUseSmmVersion |FALSE
gBeepDebugFeaturePkgTokenSpaceGuid.PcdBeepDebugFeatureEnable |FALSE
gPostCodeDebugFeaturePkgTokenSpaceGuid.PcdPostCodeDebugFeatureEnable |FALSE
gUsb3DebugFeaturePkgTokenSpaceGuid.PcdUsb3DebugFeatureEnable |FALSE
gNetworkFeaturePkgTokenSpaceGuid.PcdNetworkFeatureEnable |FALSE
gIpmiFeaturePkgTokenSpaceGuid.PcdIpmiFeatureEnable |FALSE
gSpcrFeaturePkgTokenSpaceGuid.PcdSpcrFeatureEnable |FALSE
gAsfFeaturePkgTokenSpaceGuid.PcdAsfFeatureEnable |FALSE
gS3FeaturePkgTokenSpaceGuid.PcdS3FeatureEnable |FALSE
gSmbiosFeaturePkgTokenSpaceGuid.PcdSmbiosFeatureEnable |FALSE
gLogoFeaturePkgTokenSpaceGuid.PcdLogoFeatureEnable |FALSE
gUserAuthFeaturePkgTokenSpaceGuid.PcdUserAuthenticationFeatureEnable |FALSE
gVirtualKeyboardFeaturePkgTokenSpaceGuid.PcdVirtualKeyboardFeatureEnable |FALSE
gPlatformPayloadFeaturePkgTokenSpaceGuid.PcdPlatformPayloadFeatureEnable |FALSE
#
# There seems to be some build parsing odd behavior that requires this PCD to be specified even though
# the *.fdf that consumes it is dependent on the feature flag.
# This section is to ensure that boards have these PCD instantiated.
#
[PcdsFeatureFlag]
gLogoFeaturePkgTokenSpaceGuid.PcdJpgEnable |FALSE
|