mirror of https://github.com/acidanthera/audk.git
CorebootPayloadPkg: Increase payload size limit
Increase payload size limit to accomodate large binaries, such as those produced by Microsoft NOOPT builds and gcc DEBUG builds. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Scott Duplichan <scott@notabs.org> Reviewed-by: Maurice Ma <maurice.ma@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17148 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
30a3e833ea
commit
08e9b6f72c
|
@ -17,15 +17,15 @@
|
||||||
################################################################################
|
################################################################################
|
||||||
[FD.UefiPayload]
|
[FD.UefiPayload]
|
||||||
BaseAddress = 0x800000|gUefiCorebootModulePkgTokenSpaceGuid.PcdPayloadFdMemBase
|
BaseAddress = 0x800000|gUefiCorebootModulePkgTokenSpaceGuid.PcdPayloadFdMemBase
|
||||||
Size = 0x400000|gUefiCorebootModulePkgTokenSpaceGuid.PcdPayloadFdMemSize
|
Size = 0x410000|gUefiCorebootModulePkgTokenSpaceGuid.PcdPayloadFdMemSize
|
||||||
ErasePolarity = 1
|
ErasePolarity = 1
|
||||||
BlockSize = 0x1000
|
BlockSize = 0x1000
|
||||||
NumBlocks = 0x400
|
NumBlocks = 0x410
|
||||||
|
|
||||||
0x00000000|0x020000
|
0x00000000|0x030000
|
||||||
FV = PEIFV
|
FV = PEIFV
|
||||||
|
|
||||||
0x00020000|0x3E0000
|
0x00030000|0x3E0000
|
||||||
FV = DXEFV
|
FV = DXEFV
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
Loading…
Reference in New Issue