Last change
on this file since 86513 was 85718, checked in by vboxsync, 4 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.1 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Network DSC include file for Platform DSC
|
---|
3 | #
|
---|
4 | # This file includes all required information to enable Network features.
|
---|
5 | # It can be included to a platform DSC file by using "!include NetworkPkg/Network.dsc.inc".
|
---|
6 | #
|
---|
7 | # This file defines one build flag PLATFORMX64_ENABLE to support
|
---|
8 | # IA32 PEI and X64 DXE platform. Its default value is FALSE.
|
---|
9 | #
|
---|
10 | # Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
|
---|
11 | # Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
|
---|
12 | #
|
---|
13 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
14 | #
|
---|
15 | ##
|
---|
16 |
|
---|
17 | [Defines]
|
---|
18 | !include NetworkPkg/NetworkDefines.dsc.inc
|
---|
19 |
|
---|
20 | !ifndef PLATFORMX64_ENABLE
|
---|
21 | #
|
---|
22 | # PLATFORMX64_ENABLE is set to TRUE when PEI is IA32 and DXE is X64 platform
|
---|
23 | #
|
---|
24 | DEFINE PLATFORMX64_ENABLE = FALSE
|
---|
25 | !endif
|
---|
26 |
|
---|
27 | [PcdsFixedAtBuild]
|
---|
28 | !include NetworkPkg/NetworkPcds.dsc.inc
|
---|
29 |
|
---|
30 | [LibraryClasses]
|
---|
31 | !include NetworkPkg/NetworkLibs.dsc.inc
|
---|
32 |
|
---|
33 | !if $(PLATFORMX64_ENABLE) == TRUE
|
---|
34 | [Components.X64]
|
---|
35 | !include NetworkPkg/NetworkComponents.dsc.inc
|
---|
36 |
|
---|
37 | !else
|
---|
38 | [Components.IA32, Components.X64, Components.ARM, Components.AARCH64, Components.RISCV64]
|
---|
39 | !include NetworkPkg/NetworkComponents.dsc.inc
|
---|
40 |
|
---|
41 | !endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.