VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/SourceLevelDebugPkg/SourceLevelDebugPkg.dsc@ 80953

Last change on this file since 80953 was 80721, checked in by vboxsync, 5 years ago

Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643

  • Property svn:eol-style set to native
File size: 5.9 KB
Line 
1## @file
2# Source Level Debug Package.
3#
4# Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
5#
6# SPDX-License-Identifier: BSD-2-Clause-Patent
7#
8##
9
10################################################################################
11#
12# Defines Section - statements that will be processed to create a Makefile.
13#
14################################################################################
15[Defines]
16 PLATFORM_NAME = SourceLevelDebugPkg
17 PLATFORM_GUID = 38C85805-883F-4ee8-A854-95B966ED73AA
18 PLATFORM_VERSION = 0.96
19 DSC_SPECIFICATION = 0x00010005
20 OUTPUT_DIRECTORY = Build/SourceLevelDebugPkg
21 SUPPORTED_ARCHITECTURES = IA32|X64
22 BUILD_TARGETS = DEBUG|RELEASE|NOOPT
23 SKUID_IDENTIFIER = DEFAULT
24
25[LibraryClasses.common]
26 DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
27 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
28 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
29 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
30 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
31 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
32 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
33 SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
34 LocalApicLib|UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf
35 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
36 SerialPortLib|MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.inf
37 PeCoffExtraActionLib|SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
38 TimerLib|UefiCpuPkg/Library/SecPeiDxeTimerLibUefiCpu/SecPeiDxeTimerLibUefiCpu.inf
39 ResetSystemLib|MdeModulePkg/Library/BaseResetSystemLibNull/BaseResetSystemLibNull.inf
40 PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
41 PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
42 PlatformHookLib|MdeModulePkg/Library/BasePlatformHookLibNull/BasePlatformHookLibNull.inf
43
44!ifdef $(SOURCE_DEBUG_USE_USB)
45 DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.inf
46!else
47!ifndef $(SOURCE_DEBUG_USE_USB3)
48 DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
49!endif
50!endif
51
52[LibraryClasses.common.PEIM]
53 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
54 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
55 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
56 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
57 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
58 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
59!ifdef $(SOURCE_DEBUG_USE_USB3)
60 DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Pei.inf
61!endif
62
63[LibraryClasses.common.DXE_DRIVER]
64 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
65 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
66 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
67 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
68 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
69 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
70 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
71 DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
72!ifdef $(SOURCE_DEBUG_USE_USB3)
73 DebugCommunicationLib|SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Dxe.inf
74!endif
75
76###################################################################################################
77#
78# Components Section - list of the modules and components that will be processed by compilation
79# tools and the EDK II tools to generate PE32/PE32+/Coff image files.
80#
81# Note: The EDK II DSC file is not used to specify how compiled binary images get placed
82# into firmware volume images. This section is just a list of modules to compile from
83# source into UEFI-compliant binaries.
84# It is the FDF file that contains information on combining binary files into firmware
85# volume images, whose concept is beyond UEFI and is described in PI specification.
86# Binary modules do not need to be listed in this section, as they should be
87# specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
88# Logo (Logo.bmp), and etc.
89# There may also be modules listed in this section that are not required in the FDF file,
90# When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
91# generated for it, but the binary will not be put into any firmware volume.
92#
93###################################################################################################
94
95[Components.common]
96 SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Dxe.inf
97 SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Pei.inf
98 SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
99 SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationLibUsb.inf
100 SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
101 SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
102 SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
103 SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf
104 SourceLevelDebugPkg/DebugAgentPei/DebugAgentPei.inf
105 SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxe.inf
106
107[BuildOptions]
108 *_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette