From: Pierre Gondois <[email protected]> Dynamic Tables Framework has been updated to include support for SSDT Serial Port generator. The SSDT Serial port generator uses AmlLib library to parse, iterate and update AML nodes.
The addition of these libraries to the Dynamic Tables Framework have increased the size requirement of the Firmware Device (FD) Image. The current FD size is not sufficient due to which the Juno firmware builds are failing. This patch adds one additional block to accommodate the increase in FD size. Change-Id: Idb63a3f97c229e735b509876af82b3598660b5aa Signed-off-by: Pierre Gondois <[email protected]> --- Platform/ARM/JunoPkg/ArmJuno.fdf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Platform/ARM/JunoPkg/ArmJuno.fdf b/Platform/ARM/JunoPkg/ArmJuno.fdf index 5d791a4e16075073992a5646db34d094677837d2..f70d30c6a9d9d6eb73087dc673f0c9287d23d666 100644 --- a/Platform/ARM/JunoPkg/ArmJuno.fdf +++ b/Platform/ARM/JunoPkg/ArmJuno.fdf @@ -1,5 +1,5 @@ # -# Copyright (c) 2013-2018, ARM Limited. All rights reserved. +# Copyright (c) 2013-2019, Arm Limited. All rights reserved.<BR> # # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -20,12 +20,12 @@ [FD.BL33_AP_UEFI] BaseAddress = 0xE0000000|gArmTokenSpaceGuid.PcdFdBaseAddress # The base address of the Firmware in NOR Flash. -Size = 0x000F8000|gArmTokenSpaceGuid.PcdFdSize # The size in bytes of the FLASH Device +Size = 0x000F9000|gArmTokenSpaceGuid.PcdFdSize # The size in bytes of the FLASH Device ErasePolarity = 1 # This one is tricky, it must be: BlockSize * NumBlocks = Size BlockSize = 0x00001000 -NumBlocks = 0xF8 +NumBlocks = 0xF9 ################################################################################ # @@ -43,7 +43,7 @@ [FD.BL33_AP_UEFI] # ################################################################################ -0x00000000|0x000F8000 +0x00000000|0x000F9000 gArmTokenSpaceGuid.PcdFvBaseAddress|gArmTokenSpaceGuid.PcdFvSize FV = FVMAIN_COMPACT -- 'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)' -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#64150): https://edk2.groups.io/g/devel/message/64150 Mute This Topic: https://groups.io/mt/76164185/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
