diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2011-07-01 00:37:55 +0000 |
---|---|---|
committer | Jordan Justen <jordan.l.justen@intel.com> | 2016-04-06 23:22:43 -0700 |
commit | 2f4dfa84ac56d84935e086e91f292134b8074984 (patch) | |
tree | 0a3da68cb84d922bf32943e67e61ce688fe57d28 /FatPkg/FatPkg.dsc | |
parent | 43ba7907426032e0ed6033d95545f8f7c28c44bd (diff) | |
download | edk2-2f4dfa84ac56d84935e086e91f292134b8074984.tar.gz |
FatPkg: Add FAT PEIM
Signed-off-by: jljusten
Reviewed-by: mdkinney
(based on FatPkg commit bead7f219277e063ed28589de8ddd01cf180c1a8)
[jordan.l.justen@intel.com: Use script to relicense to 2-clause BSD]
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Acked-by: Mark Doran <mark.doran@intel.com>
Acked-by: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'FatPkg/FatPkg.dsc')
-rw-r--r-- | FatPkg/FatPkg.dsc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/FatPkg/FatPkg.dsc b/FatPkg/FatPkg.dsc index cfb73f27f2..f8309717a6 100644 --- a/FatPkg/FatPkg.dsc +++ b/FatPkg/FatPkg.dsc @@ -26,6 +26,11 @@ BUILD_TARGETS = DEBUG|RELEASE
SKUID_IDENTIFIER = DEFAULT
+[BuildOptions]
+ GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
+ INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
+ MSFT:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
+
[LibraryClasses]
#
# Entry Point Libraries
@@ -46,6 +51,14 @@ DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
+[LibraryClasses.common.PEIM]
+ PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
+ PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
+ PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
+ HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
+ MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
+ PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
+
###################################################################################################
#
# Components Section - list of the modules and components that will be processed by compilation
@@ -66,4 +79,5 @@ ###################################################################################################
[Components]
+ FatPkg/FatPei/FatPei.inf
FatPkg/EnhancedFatDxe/Fat.inf
|