]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/ShellPkg.dsc
ShellPkg: Update header file including style
[mirror_edk2.git] / ShellPkg / ShellPkg.dsc
1 ## @file
2 # Shell Package
3 #
4 # Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>
5 #
6 # This program and the accompanying materials
7 # are licensed and made available under the terms and conditions of the BSD License
8 # which accompanies this distribution. The full text of the license may be found at
9 # http://opensource.org/licenses/bsd-license.php
10 #
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14 ##
15
16 [Defines]
17 PLATFORM_NAME = Shell
18 PLATFORM_GUID = E1DC9BF8-7013-4c99-9437-795DAA45F3BD
19 PLATFORM_VERSION = 1.01
20 DSC_SPECIFICATION = 0x00010006
21 OUTPUT_DIRECTORY = Build/Shell
22 SUPPORTED_ARCHITECTURES = IA32|IPF|X64|EBC|ARM|AARCH64
23 BUILD_TARGETS = DEBUG|RELEASE|NOOPT
24 SKUID_IDENTIFIER = DEFAULT
25
26 [LibraryClasses.common]
27 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
28 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
29 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLibOptionalDevicePathProtocol.inf
30 !if $(TARGET) == RELEASE
31 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
32 !else
33 DebugLib|MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.inf
34 !endif
35 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
36 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
37 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
38 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
39 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
40 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
41 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
42 FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
43 SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
44 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
45 UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
46 HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
47 NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
48
49 ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
50 ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
51 ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
52 HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
53
54 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
55 BcfgCommandLib|ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
56 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
57
58 UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
59 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
60 TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
61 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
62 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
63 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
64 ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
65
66 [LibraryClasses.ARM]
67 #
68 # It is not possible to prevent the ARM compiler for generic intrinsic functions.
69 # This library provides the instrinsic functions generate by a given compiler.
70 # [LibraryClasses.ARM] and NULL mean link this library into all ARM images.
71 #
72 NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf
73
74 # Add support for GCC stack protector
75 NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf
76
77 [LibraryClasses.AARCH64]
78 NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf
79
80 [PcdsFixedAtBuild]
81 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
82 gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize|FALSE
83 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|16000
84 !ifdef $(NO_SHELL_PROFILES)
85 gEfiShellPkgTokenSpaceGuid.PcdShellProfileMask|0x00
86 !endif #$(NO_SHELL_PROFILES)
87
88 [Components]
89 #
90 # Build all the libraries when building this package.
91 # This helps developers test changes and how they affect the package.
92 #
93 ShellPkg/Library/UefiShellLib/UefiShellLib.inf
94 ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
95 ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
96 ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
97 ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
98 ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
99 ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
100 ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
101 ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
102 ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
103 ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
104 ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
105 ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf
106 ShellPkg/Library/UefiShellTftpCommandLib/UefiShellTftpCommandLib.inf
107
108 ShellPkg/Library/UefiDpLib/UefiDpLib.inf {
109 <LibraryClasses>
110 PerformanceLib|MdeModulePkg/Library/DxeSmmPerformanceLib/DxeSmmPerformanceLib.inf
111 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
112 }
113
114 ShellPkg/Application/Shell/Shell.inf {
115 <LibraryClasses>
116 NULL|ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.inf
117 NULL|ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.inf
118 NULL|ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.inf
119 !ifndef $(NO_SHELL_PROFILES)
120 NULL|ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.inf
121 NULL|ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.inf
122 NULL|ShellPkg/Library/UefiShellDebug1CommandsLib/UefiShellDebug1CommandsLib.inf
123 NULL|ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.inf
124 NULL|ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.inf
125 !ifdef $(INCLUDE_DP)
126 NULL|ShellPkg/Library/UefiDpLib/UefiDpLib.inf
127 !endif #$(INCLUDE_DP)
128 !ifdef $(INCLUDE_TFTP_COMMAND)
129 NULL|ShellPkg/Library/UefiShellTftpCommandLib/UefiShellTftpCommandLib.inf
130 !endif #$(INCLUDE_TFTP_COMMAND)
131 !endif #$(NO_SHELL_PROFILES)
132 }
133
134 [BuildOptions]
135 *_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES