lgao4 | 6bfbb5f | 2010-02-24 00:21:16 +0000 | [diff] [blame] | 1 | ## @file
|
vanjeff | 6dc1935 | 2010-02-26 05:49:12 +0000 | [diff] [blame] | 2 | # An EFI/Framework Emulation Platform with UEFI HII interface supported.
|
gikidy | 9f485cc | 2010-01-28 03:14:11 +0000 | [diff] [blame] | 3 | #
|
vanjeff | 6dc1935 | 2010-02-26 05:49:12 +0000 | [diff] [blame] | 4 | # Developer's UEFI Emulation. DUET provides an EFI/UEFI IA32/X64 environment on legacy BIOS,
|
gikidy | 9f485cc | 2010-01-28 03:14:11 +0000 | [diff] [blame] | 5 | # to help developing and debugging native EFI/UEFI drivers.
|
vanjeff | 6dc1935 | 2010-02-26 05:49:12 +0000 | [diff] [blame] | 6 | #
|
Ruiyu Ni | 3a7ec65 | 2013-11-26 05:41:34 +0000 | [diff] [blame] | 7 | # Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>
|
gikidy | 9f485cc | 2010-01-28 03:14:11 +0000 | [diff] [blame] | 8 | #
|
| 9 | # This program and the accompanying materials
|
| 10 | # are licensed and made available under the terms and conditions of the BSD License
|
| 11 | # which accompanies this distribution. The full text of the license may be found at
|
| 12 | # http://opensource.org/licenses/bsd-license.php
|
| 13 | #
|
| 14 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 15 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 16 | #
|
lgao4 | 6bfbb5f | 2010-02-24 00:21:16 +0000 | [diff] [blame] | 17 | ##
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 18 |
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 19 | ################################################################################
|
| 20 | #
|
| 21 | # Defines Section - statements that will be processed to create a Makefile.
|
| 22 | #
|
| 23 | ################################################################################
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 24 | [Defines]
|
| 25 | PLATFORM_NAME = DuetPkg
|
| 26 | PLATFORM_GUID = 199E24E0-0989-42aa-87F2-611A8C397E72
|
niruiyu | 0c949ba | 2011-12-13 08:31:55 +0000 | [diff] [blame] | 27 | PLATFORM_VERSION = 0.4
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 28 | DSC_SPECIFICATION = 0x00010005
|
klu2 | ab9cb4b | 2010-03-18 02:36:52 +0000 | [diff] [blame] | 29 | OUTPUT_DIRECTORY = Build/DuetPkgIA32
|
| 30 | SUPPORTED_ARCHITECTURES = IA32
|
lgao4 | a47d463 | 2010-03-29 09:49:53 +0000 | [diff] [blame] | 31 | BUILD_TARGETS = DEBUG
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 32 | SKUID_IDENTIFIER = DEFAULT
|
| 33 | FLASH_DEFINITION = DuetPkg/DuetPkg.fdf
|
| 34 |
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 35 | ################################################################################
|
| 36 | #
|
| 37 | # Library Class section - list of all Library Classes needed by this Platform.
|
| 38 | #
|
| 39 | ################################################################################
|
lgao4 | 6bfbb5f | 2010-02-24 00:21:16 +0000 | [diff] [blame] | 40 | [LibraryClasses]
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 41 | #
|
| 42 | # Entry point
|
| 43 | #
|
| 44 | PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
|
| 45 | DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
|
| 46 | UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
|
| 47 | UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
|
| 48 | #
|
| 49 | # Basic
|
| 50 | #
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 51 | BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
|
| 52 | SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
| 53 | BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 54 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 55 | CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 56 | IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
|
niruiyu | 0e047a2 | 2010-02-21 09:30:01 +0000 | [diff] [blame] | 57 | PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
|
| 58 | PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 59 | PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf
|
| 60 | CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
| 61 | PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
| 62 | PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
| 63 | #
|
| 64 | # UEFI & PI
|
| 65 | #
|
| 66 | UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
| 67 | UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
| 68 | UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
|
| 69 | UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
|
| 70 | UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
|
| 71 | HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
|
| 72 | DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
| 73 | UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
|
| 74 | DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
|
| 75 | DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
rsun3 | d4d58cb | 2012-07-10 04:57:44 +0000 | [diff] [blame] | 76 | UefiCpuLib|UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
|
geekboy15a | c5ae1de | 2012-05-18 20:22:36 +0000 | [diff] [blame] | 77 |
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 78 | #
|
| 79 | # Generic Modules
|
| 80 | #
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 81 | UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 82 | UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
|
| 83 | OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
|
| 84 | GenericBdsLib|IntelFrameworkModulePkg/Library/GenericBdsLib/GenericBdsLib.inf
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 85 | SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 86 | CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
|
| 87 | PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
|
Eric Dong | 6b1ac44 | 2013-08-12 02:25:59 +0000 | [diff] [blame] | 88 | CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 89 | #
|
| 90 | # Platform
|
| 91 | #
|
| 92 | PlatformBdsLib|DuetPkg/Library/DuetBdsLib/PlatformBds.inf
|
| 93 | TimerLib|DuetPkg/Library/DuetTimerLib/DuetTimerLib.inf
|
| 94 | #
|
| 95 | # Misc
|
| 96 | #
|
| 97 | PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
|
vanjeff | 6dc1935 | 2010-02-26 05:49:12 +0000 | [diff] [blame] | 98 | DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 99 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
| 100 | MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
|
| 101 | HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
|
| 102 | ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
|
niruiyu | b68b78e | 2011-06-23 08:31:18 +0000 | [diff] [blame] | 103 | PlatformHookLib|MdeModulePkg/Library/BasePlatformHookLibNull/BasePlatformHookLibNull.inf
|
| 104 | SerialPortLib|MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.inf
|
jljusten | b8781a7 | 2010-10-22 01:08:16 +0000 | [diff] [blame] | 105 | MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf
|
Ruiyu Ni | 3a7ec65 | 2013-11-26 05:41:34 +0000 | [diff] [blame] | 106 | CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
|
geekboy15a | c5ae1de | 2012-05-18 20:22:36 +0000 | [diff] [blame] | 107 | LocalApicLib|UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf
|
| 108 |
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 109 | #
|
| 110 | # To save size, use NULL library for DebugLib and ReportStatusCodeLib.
|
| 111 | # If need status code output, do library instance overriden as below DxeMain.inf does
|
| 112 | #
|
| 113 | DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
geekboy15a | c5ae1de | 2012-05-18 20:22:36 +0000 | [diff] [blame] | 114 | DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 115 | ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
|
vanjeff | 6dc1935 | 2010-02-26 05:49:12 +0000 | [diff] [blame] | 116 |
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 117 | [LibraryClasses.common.DXE_CORE]
|
| 118 | HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 119 | MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 120 |
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 121 | ################################################################################
|
| 122 | #
|
| 123 | # Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
| 124 | #
|
| 125 | ################################################################################
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 126 | [PcdsFixedAtBuild]
|
| 127 | gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0
|
| 128 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x0
|
| 129 | gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x0
|
lgao4 | df1b757 | 2011-08-29 13:36:03 +0000 | [diff] [blame] | 130 | gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 131 |
|
lgao4 | 6bfbb5f | 2010-02-24 00:21:16 +0000 | [diff] [blame] | 132 | [PcdsFeatureFlag]
|
niruiyu | c943ee0 | 2010-02-20 07:10:16 +0000 | [diff] [blame] | 133 | gEfiMdeModulePkgTokenSpaceGuid.PcdTurnOffUsbLegacySupport|TRUE
|
niruiyu | 2303190 | 2010-02-22 06:03:08 +0000 | [diff] [blame] | 134 |
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 135 | ###################################################################################################
|
| 136 | #
|
| 137 | # Components Section - list of the modules and components that will be processed by compilation
|
| 138 | # tools and the EDK II tools to generate PE32/PE32+/Coff image files.
|
| 139 | #
|
| 140 | # Note: The EDK II DSC file is not used to specify how compiled binary images get placed
|
| 141 | # into firmware volume images. This section is just a list of modules to compile from
|
| 142 | # source into UEFI-compliant binaries.
|
| 143 | # It is the FDF file that contains information on combining binary files into firmware
|
| 144 | # volume images, whose concept is beyond UEFI and is described in PI specification.
|
| 145 | # Binary modules do not need to be listed in this section, as they should be
|
| 146 | # specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
|
| 147 | # Logo (Logo.bmp), and etc.
|
| 148 | # There may also be modules listed in this section that are not required in the FDF file,
|
| 149 | # When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
|
| 150 | # generated for it, but the binary will not be put into any firmware volume.
|
| 151 | #
|
| 152 | ###################################################################################################
|
lgao4 | 6bfbb5f | 2010-02-24 00:21:16 +0000 | [diff] [blame] | 153 | [Components]
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 154 | DuetPkg/DxeIpl/DxeIpl.inf {
|
| 155 | <LibraryClasses>
|
| 156 | #
|
vanjeff | 6dc1935 | 2010-02-26 05:49:12 +0000 | [diff] [blame] | 157 | # If no following overriden for ReportStatusCodeLib library class,
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 158 | # All other module can *not* output debug information even they are use not NULL library
|
| 159 | # instance for DebugLib and ReportStatusCodeLib
|
| 160 | #
|
| 161 | ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
| 162 | }
|
| 163 |
|
| 164 | MdeModulePkg/Core/Dxe/DxeMain.inf {
|
| 165 | #
|
| 166 | # Enable debug output for DxeCore module, this is a sample for how to enable debug output
|
| 167 | # for a module. If need turn on debug output for other module, please copy following overriden
|
| 168 | # PCD and library instance to other module's override section.
|
| 169 | #
|
| 170 | <PcdsFixedAtBuild>
|
| 171 | gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
|
| 172 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
|
| 173 | gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000042
|
| 174 | <LibraryClasses>
|
| 175 | DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
|
| 176 | ReportStatusCodeLib|DuetPkg/Library/DxeCoreReportStatusCodeLibFromHob/DxeCoreReportStatusCodeLibFromHob.inf
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 177 | }
|
klu2 | 91a6db7 | 2010-02-25 16:52:10 +0000 | [diff] [blame] | 178 |
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 179 | MdeModulePkg/Universal/PCD/Dxe/Pcd.inf
|
| 180 | MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
|
| 181 | MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
|
| 182 | MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
|
| 183 |
|
| 184 | DuetPkg/FSVariable/FSVariable.inf
|
| 185 | MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
|
| 186 | MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
| 187 | MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
|
| 188 | MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
|
| 189 | MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf {
|
| 190 | <LibraryClasses>
|
| 191 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 192 | }
|
| 193 | MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
|
| 194 | MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
|
Eric Dong | 6b1ac44 | 2013-08-12 02:25:59 +0000 | [diff] [blame] | 195 | MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 196 |
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 197 | MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
|
| 198 | MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
|
| 199 | MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
|
| 200 | MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
|
| 201 |
|
| 202 |
|
| 203 | DuetPkg/SmbiosGenDxe/SmbiosGen.inf
|
| 204 | #DuetPkg/FvbRuntimeService/DUETFwh.inf
|
| 205 | DuetPkg/EfiLdr/EfiLdr.inf {
|
| 206 | <LibraryClasses>
|
| 207 | DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
| 208 | NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
|
| 209 | }
|
| 210 | IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf {
|
| 211 | <LibraryClasses>
|
| 212 | PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
|
| 213 | }
|
| 214 | MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
|
| 215 | UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
|
jljusten | b8781a7 | 2010-10-22 01:08:16 +0000 | [diff] [blame] | 216 | UefiCpuPkg/CpuDxe/CpuDxe.inf
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 217 | PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf
|
niruiyu | 0e047a2 | 2010-02-21 09:30:01 +0000 | [diff] [blame] | 218 | DuetPkg/AcpiResetDxe/Reset.inf
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 219 | DuetPkg/LegacyMetronome/Metronome.inf
|
| 220 |
|
| 221 | PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
|
| 222 | PcAtChipsetPkg/8254TimerDxe/8254Timer.inf
|
| 223 | DuetPkg/PciRootBridgeNoEnumerationDxe/PciRootBridgeNoEnumeration.inf
|
| 224 | DuetPkg/PciBusNoEnumerationDxe/PciBusNoEnumeration.inf
|
| 225 | IntelFrameworkModulePkg/Bus/Pci/VgaMiniPortDxe/VgaMiniPortDxe.inf
|
| 226 | IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf
|
| 227 |
|
lzeng14 | 27f3015 | 2011-03-08 05:42:37 +0000 | [diff] [blame] | 228 | # IDE/AHCI Support
|
| 229 | DuetPkg/SataControllerDxe/SataControllerDxe.inf
|
| 230 | MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
|
| 231 | MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
|
| 232 | MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
|
| 233 | MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
|
vanjeff | 6dc1935 | 2010-02-26 05:49:12 +0000 | [diff] [blame] | 234 |
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 235 | # Usb Support
|
| 236 | MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
|
| 237 | MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
|
| 238 | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
|
| 239 | MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
|
| 240 | MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
|
| 241 |
|
| 242 | # ISA Support
|
| 243 | PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf
|
| 244 | IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
|
| 245 | IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
|
| 246 | IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
|
| 247 | IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/IsaFloppyDxe.inf
|
| 248 |
|
| 249 | MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
|
| 250 | MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
|
| 251 | MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
|
| 252 |
|
| 253 | # Bios Thunk
|
| 254 | DuetPkg/BiosVideoThunkDxe/BiosVideo.inf
|
| 255 |
|
| 256 | #
|
| 257 | # Sample Application
|
| 258 | #
|
| 259 | MdeModulePkg/Application/HelloWorld/HelloWorld.inf
|
| 260 |
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 261 | ###################################################################################################
|
| 262 | #
|
| 263 | # BuildOptions Section - Define the module specific tool chain flags that should be used as
|
geekboy15a | c5ae1de | 2012-05-18 20:22:36 +0000 | [diff] [blame] | 264 | # the default flags for a module. These flags are appended to any
|
| 265 | # standard flags that are defined by the build process. They can be
|
| 266 | # applied for any modules or only those modules with the specific
|
lgao4 | b2e5957 | 2010-03-21 13:14:47 +0000 | [diff] [blame] | 267 | # module style (EDK or EDKII) specified in [Components] section.
|
| 268 | #
|
| 269 | ###################################################################################################
|
lgao4 | 6bfbb5f | 2010-02-24 00:21:16 +0000 | [diff] [blame] | 270 | [BuildOptions]
|
niruiyu | 86c8520 | 2010-02-08 05:43:12 +0000 | [diff] [blame] | 271 | MSFT:*_*_*_CC_FLAGS = /FAsc /FR$(@R).SBR
|
| 272 |
|