2 # Cryptographic Library Package for UEFI Security Implementation.
\r
4 # Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
\r
5 # This program and the accompanying materials
\r
6 # are licensed and made available under the terms and conditions of the BSD License
\r
7 # which accompanies this distribution. The full text of the license may be found at
\r
8 # http://opensource.org/licenses/bsd-license.php
\r
10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
\r
11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
\r
15 ################################################################################
\r
17 # Defines Section - statements that will be processed to create a Makefile.
\r
19 ################################################################################
\r
21 PLATFORM_NAME = CryptoPkg
\r
22 PLATFORM_GUID = E1063286-6C8C-4c25-AEF0-67A9A5B6E6B6
\r
23 PLATFORM_VERSION = 0.91
\r
24 DSC_SPECIFICATION = 0x00010005
\r
25 OUTPUT_DIRECTORY = Build/CryptoPkg
\r
26 SUPPORTED_ARCHITECTURES = IA32|X64|IPF|EBC
\r
27 BUILD_TARGETS = DEBUG|RELEASE
\r
28 SKUID_IDENTIFIER = DEFAULT
\r
30 ################################################################################
\r
32 # Library Class section - list of all Library Classes needed by this Platform.
\r
34 ################################################################################
\r
36 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
\r
37 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
\r
38 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
\r
39 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
\r
40 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
\r
41 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
\r
42 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
\r
43 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
\r
44 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
\r
45 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
\r
46 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
\r
47 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
\r
48 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
\r
50 IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
\r
51 OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
\r
53 [LibraryClasses.common.PEIM]
\r
54 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf
\r
56 [LibraryClasses.common.DXE_DRIVER]
\r
57 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
\r
59 [LibraryClasses.common.DXE_RUNTIME_DRIVER]
\r
60 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
\r
62 [LibraryClasses.common.DXE_SAL_DRIVER]
\r
63 BaseCryptLib|CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/BaseCryptLibRuntimeCryptProtocol.inf
\r
65 [LibraryClasses.common.UEFI_DRIVER]
\r
66 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
\r
68 [LibraryClasses.common.UEFI_APPLICATION]
\r
69 BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
\r
71 ################################################################################
\r
73 # Pcd Section - list of all EDK II PCD Entries defined by this Platform
\r
75 ################################################################################
\r
77 gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable|TRUE
\r
78 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable|TRUE
\r
81 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x0f
\r
82 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000
\r
83 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x06
\r
85 ###################################################################################################
\r
87 # Components Section - list of the modules and components that will be processed by compilation
\r
88 # tools and the EDK II tools to generate PE32/PE32+/Coff image files.
\r
90 # Note: The EDK II DSC file is not used to specify how compiled binary images get placed
\r
91 # into firmware volume images. This section is just a list of modules to compile from
\r
92 # source into UEFI-compliant binaries.
\r
93 # It is the FDF file that contains information on combining binary files into firmware
\r
94 # volume images, whose concept is beyond UEFI and is described in PI specification.
\r
95 # Binary modules do not need to be listed in this section, as they should be
\r
96 # specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
\r
97 # Logo (Logo.bmp), and etc.
\r
98 # There may also be modules listed in this section that are not required in the FDF file,
\r
99 # When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
\r
100 # generated for it, but the binary will not be put into any firmware volume.
\r
102 ###################################################################################################
\r
104 CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
\r
105 CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf
\r
106 CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf
\r
108 CryptoPkg/Application/Cryptest/Cryptest.inf
\r
110 CryptoPkg/CryptRuntimeDxe/CryptRuntimeDxe.inf
\r
112 [Components.IA32, Components.X64]
\r
113 CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
\r
116 CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/BaseCryptLibRuntimeCryptProtocol.inf
\r