From 500888511da9ec0c61fa0ee25e0c4f0023cb7a2c Mon Sep 17 00:00:00 2001 From: Yann Gautier Date: Thu, 21 Oct 2021 14:57:52 +0200 Subject: [PATCH] docs(stm32mp1): fix FIP command with OP-TEE When building a FIP with OP-TEE as BL32 on STM32MP1, AARCH32_SP=optee has to be added to the make command. Change-Id: I900c01957fe4ed7ed13ca955edd91ed1c5c5c4fa Signed-off-by: Yann Gautier --- docs/plat/stm32mp1.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/plat/stm32mp1.rst b/docs/plat/stm32mp1.rst index 17f7a8618..af302c628 100644 --- a/docs/plat/stm32mp1.rst +++ b/docs/plat/stm32mp1.rst @@ -181,6 +181,7 @@ With OP-TEE: .. code:: bash make CROSS_COMPILE=arm-none-eabi- PLAT=stm32mp1 ARCH=aarch32 ARM_ARCH_MAJOR=7 \ + AARCH32_SP=optee \ DTB_FILE_NAME=stm32mp157c-ev1.dtb \ BL33=/u-boot-nodtb.bin \ BL33_CFG=/u-boot.dtb \