NetworkPkg.dsc 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. ## @file
  2. # UEFI 2.4 Network Module Package for All Architectures
  3. #
  4. # (C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR>
  5. # Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
  6. #
  7. # SPDX-License-Identifier: BSD-2-Clause-Patent
  8. #
  9. ##
  10. [Defines]
  11. PLATFORM_NAME = NetworkPkg
  12. PLATFORM_GUID = 3FD34E9B-E90C-44e1-B510-1F632A509F10
  13. PLATFORM_VERSION = 0.98
  14. DSC_SPECIFICATION = 0x00010005
  15. OUTPUT_DIRECTORY = Build/NetworkPkg
  16. SUPPORTED_ARCHITECTURES = IA32|X64|EBC|ARM|AARCH64
  17. BUILD_TARGETS = DEBUG|RELEASE|NOOPT
  18. SKUID_IDENTIFIER = DEFAULT
  19. [LibraryClasses]
  20. DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
  21. BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
  22. BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
  23. DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
  24. HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
  25. MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
  26. PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
  27. PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
  28. UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
  29. UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
  30. UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
  31. UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
  32. UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
  33. UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
  34. UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
  35. TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
  36. PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
  37. PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
  38. DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
  39. DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
  40. SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
  41. BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
  42. OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
  43. IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
  44. TlsLib|CryptoPkg/Library/TlsLib/TlsLib.inf
  45. DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
  46. FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
  47. FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf
  48. SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
  49. [LibraryClasses.common.UEFI_DRIVER]
  50. HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
  51. ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
  52. DebugLib|MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.inf
  53. [LibraryClasses.common.UEFI_APPLICATION]
  54. DebugLib|MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.inf
  55. ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
  56. [LibraryClasses.ARM, LibraryClasses.AARCH64]
  57. #
  58. # It is not possible to prevent ARM compiler calls to generic intrinsic functions.
  59. # This library provides the instrinsic functions generated by a given compiler.
  60. # [LibraryClasses.ARM] and NULL mean link this library into all ARM images.
  61. #
  62. NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf
  63. NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf
  64. ArmSoftFloatLib|ArmPkg/Library/ArmSoftFloatLib/ArmSoftFloatLib.inf
  65. [PcdsFeatureFlag]
  66. gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable|TRUE
  67. gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable|TRUE
  68. [PcdsFixedAtBuild]
  69. gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2f
  70. gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000
  71. ###################################################################################################
  72. #
  73. # Components Section - list of the modules and components that will be processed by compilation
  74. # tools and the EDK II tools to generate PE32/PE32+/Coff image files.
  75. #
  76. # Note: The EDK II DSC file is not used to specify how compiled binary images get placed
  77. # into firmware volume images. This section is just a list of modules to compile from
  78. # source into UEFI-compliant binaries.
  79. # It is the FDF file that contains information on combining binary files into firmware
  80. # volume images, whose concept is beyond UEFI and is described in PI specification.
  81. # Binary modules do not need to be listed in this section, as they should be
  82. # specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
  83. # Logo (Logo.bmp), and etc.
  84. # There may also be modules listed in this section that are not required in the FDF file,
  85. # When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
  86. # generated for it, but the binary will not be put into any firmware volume.
  87. #
  88. ###################################################################################################
  89. [Components]
  90. NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxe.inf
  91. NetworkPkg/Application/VConfig/VConfig.inf
  92. !include NetworkPkg/Network.dsc.inc
  93. [BuildOptions]
  94. *_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES