blob: 83b1de634af7362e363dd25fe2a82b65ac94dd7a [file] [log] [blame]
andrewfish949f3882011-05-11 18:31:20 +00001## @file
jljustene23e4882011-06-29 05:13:54 +00002# This is Emulator FDF file with UEFI HII features enabled
andrewfish949f3882011-05-11 18:31:20 +00003#
Star Zeng94c45752013-07-03 09:24:07 +00004# Copyright (c) 2008 - 2013, Intel Corporation. All rights reserved.<BR>
andrewfish949f3882011-05-11 18:31:20 +00005# Portions copyright (c) 2009 - 2011, Apple Inc. All rights reserved.<BR>
6#
jljustene23e4882011-06-29 05:13:54 +00007# This program and the accompanying materials
8# are licensed and made available under the terms and conditions of the BSD License
9# which accompanies this distribution. The full text of the license may be found at
10# http://opensource.org/licenses/bsd-license.php
andrewfish949f3882011-05-11 18:31:20 +000011#
jljustene23e4882011-06-29 05:13:54 +000012# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
andrewfish949f3882011-05-11 18:31:20 +000014#
15
andrewfish949f3882011-05-11 18:31:20 +000016[FD.Fv_Recovery]
17#
jljustend18d8a12011-06-28 16:50:26 +000018# In OS X PEIMs are really XIP, so we need to make this address match the malloced
andrewfish949f3882011-05-11 18:31:20 +000019# buffer for the FD (0x41000000). If this address does not match the FV will get
20# relocated in place (works, but not a great idea).
21#
jljustenbb89ec12011-06-28 16:47:23 +000022BaseAddress = 0x102000000|gEmulatorPkgTokenSpaceGuid.PcdEmuFdBaseAddress #The base address of the FLASH Device.
23Size = 0x005a0000|gEmulatorPkgTokenSpaceGuid.PcdEmuFirmwareFdSize #The size in bytes of the FLASH Device
andrewfish949f3882011-05-11 18:31:20 +000024ErasePolarity = 1
25BlockSize = 0x10000
26NumBlocks = 0x5a
27
andrewfish949f3882011-05-11 18:31:20 +0000280x00000000|0x00580000
jljustenbb89ec12011-06-28 16:47:23 +000029gEmulatorPkgTokenSpaceGuid.PcdEmuFlashFvRecoveryBase|gEmulatorPkgTokenSpaceGuid.PcdEmuFlashFvRecoverySize
andrewfish949f3882011-05-11 18:31:20 +000030FV = FvRecovery
31
320x00580000|0x0000c000
jljustenbb89ec12011-06-28 16:47:23 +000033gEmulatorPkgTokenSpaceGuid.PcdEmuFlashNvStorageVariableBase|gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
andrewfish949f3882011-05-11 18:31:20 +000034#NV_VARIABLE_STORE
35DATA = {
36 ## This is the EFI_FIRMWARE_VOLUME_HEADER
37 # ZeroVector []
38 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
39 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
40 # FileSystemGuid: gEfiSystemNvDataFvGuid =
41 # { 0xFFF12B8D, 0x7696, 0x4C8B, { 0xA9, 0x85, 0x27, 0x47, 0x07, 0x5B, 0x4F, 0x50 }}
42 0x8D, 0x2B, 0xF1, 0xFF, 0x96, 0x76, 0x8B, 0x4C,
43 0xA9, 0x85, 0x27, 0x47, 0x07, 0x5B, 0x4F, 0x50,
44 # FvLength: 0x20000
45 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
46 # Signature "_FVH" #Attributes
47 0x5f, 0x46, 0x56, 0x48, 0xff, 0xfe, 0x04, 0x00,
48 # HeaderLength #CheckSum #ExtHeaderOffset #Reserved #Revision
49 0x48, 0x00, 0x36, 0x09, 0x00, 0x00, 0x00, 0x02,
50 # Blockmap[0]: 2 Blocks * 0x10000 Bytes / Block
51 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
52 # Blockmap[1]: End
53 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
54 ## This is the VARIABLE_STORE_HEADER
55 #Signature: gEfiVariableGuid =
56 # { 0xddcf3616, 0x3275, 0x4164, { 0x98, 0xb6, 0xfe, 0x85, 0x70, 0x7f, 0xfe, 0x7d }}
57 0x16, 0x36, 0xcf, 0xdd, 0x75, 0x32, 0x64, 0x41,
58 0x98, 0xb6, 0xfe, 0x85, 0x70, 0x7f, 0xfe, 0x7d,
59 #Size: 0xc000 (gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize) - 0x48 (size of EFI_FIRMWARE_VOLUME_HEADER) = 0xBFB8
60 # This can speed up the Variable Dispatch a bit.
61 0xB8, 0xBF, 0x00, 0x00,
62 #FORMATTED: 0x5A #HEALTHY: 0xFE #Reserved: UINT16 #Reserved1: UINT32
63 0x5A, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
64}
65
660x0058c000|0x00002000
67#NV_EVENT_LOG
jljustenbb89ec12011-06-28 16:47:23 +000068gEmulatorPkgTokenSpaceGuid.PcdEmuFlashNvStorageEventLogBase|gEmulatorPkgTokenSpaceGuid.PcdEmuFlashNvStorageEventLogSize
andrewfish949f3882011-05-11 18:31:20 +000069
700x0058e000|0x00002000
jljustenbb89ec12011-06-28 16:47:23 +000071gEmulatorPkgTokenSpaceGuid.PcdEmuFlashNvStorageFtwWorkingBase|gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
andrewfish949f3882011-05-11 18:31:20 +000072#NV_FTW_WORKING
73DATA = {
Star Zeng94c45752013-07-03 09:24:07 +000074 # EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER->Signature = gEdkiiWorkingBlockSignatureGuid =
75 # { 0x9e58292b, 0x7c68, 0x497d, { 0xa0, 0xce, 0x65, 0x0, 0xfd, 0x9f, 0x1b, 0x95 }}
76 0x2b, 0x29, 0x58, 0x9e, 0x68, 0x7c, 0x7d, 0x49,
77 0xa0, 0xce, 0x65, 0x0, 0xfd, 0x9f, 0x1b, 0x95,
andrewfish949f3882011-05-11 18:31:20 +000078 # Crc:UINT32 #WorkingBlockValid:1, WorkingBlockInvalid:1, Reserved
Star Zeng94c45752013-07-03 09:24:07 +000079 0xE2, 0x33, 0xF2, 0x03, 0xFE, 0xFF, 0xFF, 0xFF,
andrewfish949f3882011-05-11 18:31:20 +000080 # WriteQueueSize: UINT64
81 0xE0, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
82}
83
840x00590000|0x00010000
85#NV_FTW_SPARE
jljustenbb89ec12011-06-28 16:47:23 +000086gEmulatorPkgTokenSpaceGuid.PcdEmuFlashNvStorageFtwSpareBase|gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
andrewfish949f3882011-05-11 18:31:20 +000087
andrewfish949f3882011-05-11 18:31:20 +000088[FV.FvRecovery]
89FvAlignment = 16 #FV alignment and FV attributes setting.
90ERASE_POLARITY = 1
91MEMORY_MAPPED = TRUE
92STICKY_WRITE = TRUE
93LOCK_CAP = TRUE
94LOCK_STATUS = TRUE
95WRITE_DISABLED_CAP = TRUE
96WRITE_ENABLED_CAP = TRUE
97WRITE_STATUS = TRUE
98WRITE_LOCK_CAP = TRUE
99WRITE_LOCK_STATUS = TRUE
100READ_DISABLED_CAP = TRUE
101READ_ENABLED_CAP = TRUE
102READ_STATUS = TRUE
103READ_LOCK_CAP = TRUE
104READ_LOCK_STATUS = TRUE
105
andrewfish949f3882011-05-11 18:31:20 +0000106#
andrewfish949f3882011-05-11 18:31:20 +0000107# PEI Phase modules
jljustene23e4882011-06-29 05:13:54 +0000108#
109
110#
andrewfish949f3882011-05-11 18:31:20 +0000111# PEI Apriori file example, more PEIM module added later.
jljustene23e4882011-06-29 05:13:54 +0000112#
andrewfish949f3882011-05-11 18:31:20 +0000113APRIORI PEI {
114 INF MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf
115 INF MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf
116 INF MdeModulePkg/Universal/PCD/Pei/Pcd.inf
117 }
118APRIORI DXE {
119 INF MdeModulePkg/Universal/PCD/Dxe/Pcd.inf
andrewfish1ef41202011-06-21 23:41:31 +0000120 INF MdeModulePkg/Universal/Metronome/Metronome.inf
andrewfish949f3882011-05-11 18:31:20 +0000121 }
jljustenbb89ec12011-06-28 16:47:23 +0000122INF EmulatorPkg/Sec/Sec.inf
andrewfish949f3882011-05-11 18:31:20 +0000123INF MdeModulePkg/Core/Pei/PeiMain.inf
124INF MdeModulePkg/Universal/PCD/Pei/Pcd.inf
125INF MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf
126INF MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf
jljustenbb89ec12011-06-28 16:47:23 +0000127INF EmulatorPkg/BootModePei/BootModePei.inf
128INF EmulatorPkg/AutoScanPei/AutoScanPei.inf
129INF EmulatorPkg/FirmwareVolumePei/FirmwareVolumePei.inf
130INF EmulatorPkg/FlashMapPei/FlashMapPei.inf
131INF EmulatorPkg/ThunkPpiToProtocolPei/ThunkPpiToProtocolPei.inf
Star Zeng94c45752013-07-03 09:24:07 +0000132INF MdeModulePkg/Universal/FaultTolerantWritePei/FaultTolerantWritePei.inf
andrewfish949f3882011-05-11 18:31:20 +0000133INF MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
134INF MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
135
jljustene23e4882011-06-29 05:13:54 +0000136#
andrewfish949f3882011-05-11 18:31:20 +0000137# DXE Phase modules
jljustene23e4882011-06-29 05:13:54 +0000138#
andrewfish949f3882011-05-11 18:31:20 +0000139INF MdeModulePkg/Core/Dxe/DxeMain.inf
jljustend18d8a12011-06-28 16:50:26 +0000140INF MdeModulePkg/Universal/PCD/Dxe/Pcd.inf
andrewfish949f3882011-05-11 18:31:20 +0000141INF MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
142INF MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf
andrewfish1ef41202011-06-21 23:41:31 +0000143INF MdeModulePkg/Universal/Metronome/Metronome.inf
jljustenbb89ec12011-06-28 16:47:23 +0000144INF EmulatorPkg/RealTimeClockRuntimeDxe/RealTimeClock.inf
145INF EmulatorPkg/ResetRuntimeDxe/Reset.inf
andrewfish949f3882011-05-11 18:31:20 +0000146INF MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
jljustenbb89ec12011-06-28 16:47:23 +0000147INF EmulatorPkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000148INF MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
149INF MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
150INF MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
jljustenbb89ec12011-06-28 16:47:23 +0000151INF EmulatorPkg/EmuThunkDxe/EmuThunk.inf
152INF EmulatorPkg/CpuRuntimeDxe/Cpu.inf
andrewfish949f3882011-05-11 18:31:20 +0000153INF MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
andrewfish63f9b9b2012-01-30 18:57:30 +0000154INF EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.inf
jljustenbb89ec12011-06-28 16:47:23 +0000155INF EmulatorPkg/TimerDxe/Timer.inf
andrewfish949f3882011-05-11 18:31:20 +0000156INF MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
157INF MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
158INF MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
159INF MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
160INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
161INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
162INF MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
andrewfish7e284ac2011-06-08 02:34:12 +0000163
164INF EmbeddedPkg/SerialDxe/SerialDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000165INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
166INF MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
167INF MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
168INF MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
169INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
170INF MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
171INF MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
172INF MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
173INF IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
174INF MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
175
jljustend18d8a12011-06-28 16:50:26 +0000176INF EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.inf
jljustenbb89ec12011-06-28 16:47:23 +0000177INF EmulatorPkg/EmuGopDxe/EmuGopDxe.inf
178INF EmulatorPkg/EmuSimpleFileSystemDxe/EmuSimpleFileSystemDxe.inf
179INF EmulatorPkg/EmuBlockIoDxe/EmuBlockIoDxe.inf
180INF EmulatorPkg/EmuSnpDxe/EmuSnpDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000181
andrewfish949f3882011-05-11 18:31:20 +0000182INF MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
Andrew Fish9a25ad82014-04-15 23:53:19 +0000183INF MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000184INF MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
185INF MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
jljustend18d8a12011-06-28 16:50:26 +0000186INF IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000187INF MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
188INF MdeModulePkg/Application/HelloWorld/HelloWorld.inf
189
190#
191# Network stack drivers
192#
193!if $(NETWORK_SUPPORT)
jljustenbb89ec12011-06-28 16:47:23 +0000194INF EmulatorPkg/EmuSnpDxe/EmuSnpDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000195!endif
196INF MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf
197INF MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
198INF MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
199INF MdeModulePkg/Universal/Network/Ip4ConfigDxe/Ip4ConfigDxe.inf
200INF MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
201INF MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
202INF MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf
203INF MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
204INF MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
205INF MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
206
jljustend18d8a12011-06-28 16:50:26 +0000207
jljusten72a44be2011-05-15 17:23:33 +0000208!if $(BUILD_FAT)
andrewfish949f3882011-05-11 18:31:20 +0000209INF FatPkg/EnhancedFatDxe/Fat.inf
210!else
jljusten54e0b042011-06-23 15:23:39 +0000211INF RuleOverride = BINARY FatBinPkg/EnhancedFatDxe/Fat.inf
andrewfish949f3882011-05-11 18:31:20 +0000212!endif
213
jljusten72a44be2011-05-15 17:23:33 +0000214!if $(BUILD_NEW_SHELL)
215INF ShellPkg/Application/Shell/Shell.inf
216!else
jljusten984d7442011-06-26 18:58:23 +0000217!if $(USE_NEW_SHELL)
218INF RuleOverride = BINARY ShellBinPkg/UefiShell/UefiShell.inf
219!else
jljusten54e0b042011-06-23 15:23:39 +0000220INF RuleOverride = BINARY EdkShellBinPkg/FullShell/FullShell.inf
jljusten72a44be2011-05-15 17:23:33 +0000221!endif
jljusten984d7442011-06-26 18:58:23 +0000222!endif
andrewfish949f3882011-05-11 18:31:20 +0000223
224FILE FREEFORM = PCD(gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdLogoFile) {
225 SECTION RAW = MdeModulePkg/Logo/Logo.bmp
226}
jljustend18d8a12011-06-28 16:50:26 +0000227
228
andrewfish65e3f332011-05-14 16:00:22 +0000229[Rule.Common.SEC]
230 FILE SEC = $(NAMED_GUID) {
231 PE32 PE32 Align=32 $(INF_OUTPUT)/$(MODULE_NAME).efi
jljustend18d8a12011-06-28 16:50:26 +0000232 UI STRING ="$(MODULE_NAME)" Optional
233 VERSION STRING ="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
andrewfish65e3f332011-05-14 16:00:22 +0000234 }
235
andrewfish949f3882011-05-11 18:31:20 +0000236
237[Rule.Common.PEI_CORE]
238 FILE PEI_CORE = $(NAMED_GUID) {
239 PE32 PE32 Align=32 $(INF_OUTPUT)/$(MODULE_NAME).efi
jljustend18d8a12011-06-28 16:50:26 +0000240 UI STRING ="$(MODULE_NAME)" Optional
241 VERSION STRING ="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
andrewfish949f3882011-05-11 18:31:20 +0000242 }
243
244[Rule.Common.PEIM]
245 FILE PEIM = $(NAMED_GUID) {
246 PEI_DEPEX PEI_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
247 PE32 PE32 Align=32 $(INF_OUTPUT)/$(MODULE_NAME).efi
jljustend18d8a12011-06-28 16:50:26 +0000248 UI STRING="$(MODULE_NAME)" Optional
249 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
andrewfish949f3882011-05-11 18:31:20 +0000250 }
251
252[Rule.Common.DXE_CORE]
253 FILE DXE_CORE = $(NAMED_GUID) {
254 COMPRESS PI_STD {
255 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
256 UI STRING="$(MODULE_NAME)" Optional
257 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
258 }
259 }
260
261[Rule.Common.UEFI_DRIVER]
262 FILE DRIVER = $(NAMED_GUID) {
263 DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
264 COMPRESS PI_STD {
265 GUIDED {
266 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
267 UI STRING="$(MODULE_NAME)" Optional
268 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
269 }
270 }
271 }
272
273[Rule.Common.DXE_DRIVER]
274 FILE DRIVER = $(NAMED_GUID) {
275 DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
276 COMPRESS PI_STD {
277 GUIDED {
278 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
279 UI STRING="$(MODULE_NAME)" Optional
280 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
281 }
282 }
283 }
284
285[Rule.Common.DXE_RUNTIME_DRIVER]
286 FILE DRIVER = $(NAMED_GUID) {
287 DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
288 COMPRESS PI_STD {
289 GUIDED {
290 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
291 UI STRING="$(MODULE_NAME)" Optional
292 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
293 }
294 }
295 }
296
297[Rule.Common.UEFI_APPLICATION]
298 FILE APPLICATION = $(NAMED_GUID) {
299 COMPRESS PI_STD {
300 GUIDED {
301 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
302 UI STRING="$(MODULE_NAME)" Optional
303 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
304 }
305 }
306 }
307
308[Rule.Common.UEFI_DRIVER.BINARY]
309 FILE DRIVER = $(NAMED_GUID) {
310 DXE_DEPEX DXE_DEPEX Optional |.depex
311 PE32 PE32 |.efi
312 UI STRING="$(MODULE_NAME)" Optional
313 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
314 }
315
316[Rule.Common.UEFI_APPLICATION.BINARY]
317 FILE APPLICATION = $(NAMED_GUID) {
318 PE32 PE32 |.efi
319 UI STRING="$(MODULE_NAME)" Optional
320 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
321 }
322