diff options
author | Ying-Chun Liu (PaulLiu) <paulliu@debian.org> | 2018-07-04 02:32:27 +0800 |
---|---|---|
committer | Ying-Chun Liu (PaulLiu) <paulliu@debian.org> | 2018-07-05 14:59:02 +0800 |
commit | 6a2c3c7fd88be1cf842ad93470ad6372e69622ff (patch) | |
tree | b7b16134727b3b74b59f13b7f902571b4c6fb8cd /docs | |
parent | 14368498da39756b5b0bd088368963dc96a34dad (diff) | |
download | platform_external_arm-trusted-firmware-6a2c3c7fd88be1cf842ad93470ad6372e69622ff.tar.gz platform_external_arm-trusted-firmware-6a2c3c7fd88be1cf842ad93470ad6372e69622ff.tar.bz2 platform_external_arm-trusted-firmware-6a2c3c7fd88be1cf842ad93470ad6372e69622ff.zip |
docs: rpi3: fix the size of BL1
For Trusted Board Boot we enlarge the BL1 size from 64k to 128k.
Tested-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Signed-off-by: Ying-Chun Liu (PaulLiu) <paulliu@debian.org>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/plat/rpi3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/plat/rpi3.rst b/docs/plat/rpi3.rst index 554c9a14a..245c5d06f 100644 --- a/docs/plat/rpi3.rst +++ b/docs/plat/rpi3.rst @@ -101,7 +101,7 @@ secure platform! 0x00000000 +-----------------+ | ROM | BL1 - 0x00010000 +-----------------+ + 0x00020000 +-----------------+ | FIP | 0x00200000 +-----------------+ | | @@ -213,7 +213,7 @@ by ``debug`` if you set the build option ``DEBUG=1``): .. code:: shell cp build/rpi3/release/bl1.bin bl1.pad.bin - truncate --size=65536 bl1.pad.bin + truncate --size=131072 bl1.pad.bin cat bl1.pad.bin build/rpi3/release/fip.bin > armstub8.bin The resulting file, ``armstub8.bin``, contains BL1 and the FIP in the place they |