blob: 28ca843a1ab228fee1a6fc1eb432d6a73bc802c3 [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#
jljusten72a44be2011-05-15 17:23:33 +00004# Copyright (c) 2008 - 2011, 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 = {
74 # EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER->Signature = gEfiSystemNvDataFvGuid =
75 # { 0xFFF12B8D, 0x7696, 0x4C8B, { 0xA9, 0x85, 0x27, 0x47, 0x07, 0x5B, 0x4F, 0x50 }}
76 0x8D, 0x2B, 0xF1, 0xFF, 0x96, 0x76, 0x8B, 0x4C,
77 0xA9, 0x85, 0x27, 0x47, 0x07, 0x5B, 0x4F, 0x50,
78 # Crc:UINT32 #WorkingBlockValid:1, WorkingBlockInvalid:1, Reserved
79 0x77, 0x13, 0x9B, 0xD7, 0xFE, 0xFF, 0xFF, 0xFF,
80 # 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
andrewfish949f3882011-05-11 18:31:20 +0000132INF MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
133INF MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
134
jljustene23e4882011-06-29 05:13:54 +0000135#
andrewfish949f3882011-05-11 18:31:20 +0000136# DXE Phase modules
jljustene23e4882011-06-29 05:13:54 +0000137#
andrewfish949f3882011-05-11 18:31:20 +0000138INF MdeModulePkg/Core/Dxe/DxeMain.inf
jljustend18d8a12011-06-28 16:50:26 +0000139INF MdeModulePkg/Universal/PCD/Dxe/Pcd.inf
andrewfish949f3882011-05-11 18:31:20 +0000140INF MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
141INF MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf
andrewfish1ef41202011-06-21 23:41:31 +0000142INF MdeModulePkg/Universal/Metronome/Metronome.inf
jljustenbb89ec12011-06-28 16:47:23 +0000143INF EmulatorPkg/RealTimeClockRuntimeDxe/RealTimeClock.inf
144INF EmulatorPkg/ResetRuntimeDxe/Reset.inf
andrewfish949f3882011-05-11 18:31:20 +0000145INF MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
jljustenbb89ec12011-06-28 16:47:23 +0000146INF EmulatorPkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000147INF MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
148INF MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
149INF MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
jljustenbb89ec12011-06-28 16:47:23 +0000150INF EmulatorPkg/EmuThunkDxe/EmuThunk.inf
151INF EmulatorPkg/CpuRuntimeDxe/Cpu.inf
andrewfish949f3882011-05-11 18:31:20 +0000152INF MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
andrewfish63f9b9b2012-01-30 18:57:30 +0000153INF EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.inf
jljustenbb89ec12011-06-28 16:47:23 +0000154INF EmulatorPkg/TimerDxe/Timer.inf
andrewfish949f3882011-05-11 18:31:20 +0000155INF MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
156INF MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
157INF MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
158INF MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
159INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
160INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
161INF MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
andrewfish7e284ac2011-06-08 02:34:12 +0000162
163INF EmbeddedPkg/SerialDxe/SerialDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000164INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
165INF MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
166INF MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
167INF MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
168INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
169INF MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
170INF MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
171INF MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
172INF IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
173INF MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
174
jljustend18d8a12011-06-28 16:50:26 +0000175INF EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.inf
jljustenbb89ec12011-06-28 16:47:23 +0000176INF EmulatorPkg/EmuGopDxe/EmuGopDxe.inf
177INF EmulatorPkg/EmuSimpleFileSystemDxe/EmuSimpleFileSystemDxe.inf
178INF EmulatorPkg/EmuBlockIoDxe/EmuBlockIoDxe.inf
179INF EmulatorPkg/EmuSnpDxe/EmuSnpDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000180
andrewfish949f3882011-05-11 18:31:20 +0000181INF MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
182INF MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
183INF MdeModulePkg/Universal/PrintDxe/PrintDxe.inf
jljustend18d8a12011-06-28 16:50:26 +0000184INF IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000185INF MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
186INF MdeModulePkg/Application/HelloWorld/HelloWorld.inf
187
188#
189# Network stack drivers
190#
191!if $(NETWORK_SUPPORT)
jljustenbb89ec12011-06-28 16:47:23 +0000192INF EmulatorPkg/EmuSnpDxe/EmuSnpDxe.inf
andrewfish949f3882011-05-11 18:31:20 +0000193!endif
194INF MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf
195INF MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
196INF MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
197INF MdeModulePkg/Universal/Network/Ip4ConfigDxe/Ip4ConfigDxe.inf
198INF MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
199INF MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
200INF MdeModulePkg/Universal/Network/VlanConfigDxe/VlanConfigDxe.inf
201INF MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
202INF MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
203INF MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
204
jljustend18d8a12011-06-28 16:50:26 +0000205
jljusten72a44be2011-05-15 17:23:33 +0000206!if $(BUILD_FAT)
andrewfish949f3882011-05-11 18:31:20 +0000207INF FatPkg/EnhancedFatDxe/Fat.inf
208!else
jljusten54e0b042011-06-23 15:23:39 +0000209INF RuleOverride = BINARY FatBinPkg/EnhancedFatDxe/Fat.inf
andrewfish949f3882011-05-11 18:31:20 +0000210!endif
211
jljusten72a44be2011-05-15 17:23:33 +0000212!if $(BUILD_NEW_SHELL)
213INF ShellPkg/Application/Shell/Shell.inf
214!else
jljusten984d7442011-06-26 18:58:23 +0000215!if $(USE_NEW_SHELL)
216INF RuleOverride = BINARY ShellBinPkg/UefiShell/UefiShell.inf
217!else
jljusten54e0b042011-06-23 15:23:39 +0000218INF RuleOverride = BINARY EdkShellBinPkg/FullShell/FullShell.inf
jljusten72a44be2011-05-15 17:23:33 +0000219!endif
jljusten984d7442011-06-26 18:58:23 +0000220!endif
andrewfish949f3882011-05-11 18:31:20 +0000221
222FILE FREEFORM = PCD(gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdLogoFile) {
223 SECTION RAW = MdeModulePkg/Logo/Logo.bmp
224}
jljustend18d8a12011-06-28 16:50:26 +0000225
226
andrewfish65e3f332011-05-14 16:00:22 +0000227[Rule.Common.SEC]
228 FILE SEC = $(NAMED_GUID) {
229 PE32 PE32 Align=32 $(INF_OUTPUT)/$(MODULE_NAME).efi
jljustend18d8a12011-06-28 16:50:26 +0000230 UI STRING ="$(MODULE_NAME)" Optional
231 VERSION STRING ="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
andrewfish65e3f332011-05-14 16:00:22 +0000232 }
233
andrewfish949f3882011-05-11 18:31:20 +0000234
235[Rule.Common.PEI_CORE]
236 FILE PEI_CORE = $(NAMED_GUID) {
237 PE32 PE32 Align=32 $(INF_OUTPUT)/$(MODULE_NAME).efi
jljustend18d8a12011-06-28 16:50:26 +0000238 UI STRING ="$(MODULE_NAME)" Optional
239 VERSION STRING ="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
andrewfish949f3882011-05-11 18:31:20 +0000240 }
241
242[Rule.Common.PEIM]
243 FILE PEIM = $(NAMED_GUID) {
244 PEI_DEPEX PEI_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
245 PE32 PE32 Align=32 $(INF_OUTPUT)/$(MODULE_NAME).efi
jljustend18d8a12011-06-28 16:50:26 +0000246 UI STRING="$(MODULE_NAME)" Optional
247 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
andrewfish949f3882011-05-11 18:31:20 +0000248 }
249
250[Rule.Common.DXE_CORE]
251 FILE DXE_CORE = $(NAMED_GUID) {
252 COMPRESS PI_STD {
253 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
254 UI STRING="$(MODULE_NAME)" Optional
255 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
256 }
257 }
258
259[Rule.Common.UEFI_DRIVER]
260 FILE DRIVER = $(NAMED_GUID) {
261 DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
262 COMPRESS PI_STD {
263 GUIDED {
264 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
265 UI STRING="$(MODULE_NAME)" Optional
266 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
267 }
268 }
269 }
270
271[Rule.Common.DXE_DRIVER]
272 FILE DRIVER = $(NAMED_GUID) {
273 DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
274 COMPRESS PI_STD {
275 GUIDED {
276 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
277 UI STRING="$(MODULE_NAME)" Optional
278 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
279 }
280 }
281 }
282
283[Rule.Common.DXE_RUNTIME_DRIVER]
284 FILE DRIVER = $(NAMED_GUID) {
285 DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex
286 COMPRESS PI_STD {
287 GUIDED {
288 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
289 UI STRING="$(MODULE_NAME)" Optional
290 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
291 }
292 }
293 }
294
295[Rule.Common.UEFI_APPLICATION]
296 FILE APPLICATION = $(NAMED_GUID) {
297 COMPRESS PI_STD {
298 GUIDED {
299 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi
300 UI STRING="$(MODULE_NAME)" Optional
301 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
302 }
303 }
304 }
305
306[Rule.Common.UEFI_DRIVER.BINARY]
307 FILE DRIVER = $(NAMED_GUID) {
308 DXE_DEPEX DXE_DEPEX Optional |.depex
309 PE32 PE32 |.efi
310 UI STRING="$(MODULE_NAME)" Optional
311 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
312 }
313
314[Rule.Common.UEFI_APPLICATION.BINARY]
315 FILE APPLICATION = $(NAMED_GUID) {
316 PE32 PE32 |.efi
317 UI STRING="$(MODULE_NAME)" Optional
318 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
319 }
320