diff options
author | danh-arm <dan.handley@arm.com> | 2017-02-07 15:15:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-07 15:15:03 +0000 |
commit | bab16f9912c6a2ea7600e8d713c1eebf8f0c11d7 (patch) | |
tree | e5564055c875df8df63af77bec1c1b978fc27408 | |
parent | 7c202689cdade9c8a55d8156acad6e861ee63910 (diff) | |
parent | 4fff02c629aac068ee12bfc90da0878d08a3ee72 (diff) |
Merge pull request #831 from masahir0y/zynqmp
zynqmp: remove RESET_TO_BL31=1 from build instruction
-rw-r--r-- | docs/plat/xilinx-zynqmp.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/plat/xilinx-zynqmp.md b/docs/plat/xilinx-zynqmp.md index 09546b01..d2dc8b76 100644 --- a/docs/plat/xilinx-zynqmp.md +++ b/docs/plat/xilinx-zynqmp.md @@ -12,12 +12,12 @@ BL33 is the non-secure world software (U-Boot, Linux etc). To build: ```bash -make ERROR_DEPRECATED=1 RESET_TO_BL31=1 CROSS_COMPILE=aarch64-none-elf- PLAT=zynqmp bl31 +make ERROR_DEPRECATED=1 CROSS_COMPILE=aarch64-none-elf- PLAT=zynqmp bl31 ``` To build bl32 TSP you have to rebuild bl31 too: ```bash -make ERROR_DEPRECATED=1 RESET_TO_BL31=1 CROSS_COMPILE=aarch64-none-elf- PLAT=zynqmp SPD=tspd bl31 bl32 +make ERROR_DEPRECATED=1 CROSS_COMPILE=aarch64-none-elf- PLAT=zynqmp SPD=tspd bl31 bl32 ``` # ZynqMP platform specific build options |