Revert "trustfence: change RAM location to the same values used in u-boot"
The AHAB decryption process takes the encrypted file from the address defined
in U-Boot and decrypts it into the address defined in this script. If both
addresses are the same, the decryption process ends up failing. This
happens even for signed-only images.
Maintain the original addresses in this script so they do not collide.
This reverts commit c970d87d5a.
Signed-off-by: Gonzalo Ruiz <Gonzalo.Ruiz@digi.com>
This commit is contained in:
parent
c8c3381ba3
commit
70de030974
|
|
@ -97,9 +97,9 @@ elif [ "${PLATFORM}" = "ccimx6ul" ]; then
|
|||
CONFIG_KERNEL_LOADADDR="0x80800000"
|
||||
CONFIG_CSF_SIZE="0x4000"
|
||||
elif [ "${PLATFORM}" = "ccimx8x" ]; then
|
||||
CONFIG_FDT_LOADADDR="0x8A000000"
|
||||
CONFIG_RAMDISK_LOADADDR="0x8A100000"
|
||||
CONFIG_KERNEL_LOADADDR="0x88280000"
|
||||
CONFIG_FDT_LOADADDR="0x82000000"
|
||||
CONFIG_RAMDISK_LOADADDR="0x82100000"
|
||||
CONFIG_KERNEL_LOADADDR="0x80280000"
|
||||
elif [ "${PLATFORM}" = "ccimx8mn" ] || [ "${PLATFORM}" = "ccimx8mm" ]; then
|
||||
CONFIG_FDT_LOADADDR="0x43000000"
|
||||
CONFIG_RAMDISK_LOADADDR="0x43800000"
|
||||
|
|
|
|||
Loading…
Reference in New Issue