summaryrefslogtreecommitdiffstats
path: root/conf/machine/imx6sxsabreauto.conf
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2020-12-03 15:52:08 -0600
committerOtavio Salvador <otavio@ossystems.com.br>2021-01-21 08:37:58 -0300
commit4d0adc756e0243828423b60ccdb4d499889d468c (patch)
treea68005ecf884919c34d2d6ffe662185900755536 /conf/machine/imx6sxsabreauto.conf
parent879d59d68c834727e29edcd20949d2f60db7b14c (diff)
downloadmeta-freescale-4d0adc756e0243828423b60ccdb4d499889d468c.tar.gz
imx6sxsabreauto: Add OP-TEE
Add OP-TEE support. Add optee to MACHINE_FEATURES to enable OP-TEE in u-boot-imx. OP-TEE is currently not supported by u-boot-fslc. Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'conf/machine/imx6sxsabreauto.conf')
-rw-r--r--conf/machine/imx6sxsabreauto.conf16
1 files changed, 11 insertions, 5 deletions
diff --git a/conf/machine/imx6sxsabreauto.conf b/conf/machine/imx6sxsabreauto.conf
index 43cabea2..e8fede4a 100644
--- a/conf/machine/imx6sxsabreauto.conf
+++ b/conf/machine/imx6sxsabreauto.conf
@@ -15,11 +15,17 @@ KERNEL_DEVICETREE_use-mainline-bsp = "imx6sx-sabreauto.dtb"
15PREFERRED_PROVIDER_u-boot = "u-boot-fslc" 15PREFERRED_PROVIDER_u-boot = "u-boot-fslc"
16PREFERRED_PROVIDER_virtual/bootloader = "u-boot-fslc" 16PREFERRED_PROVIDER_virtual/bootloader = "u-boot-fslc"
17 17
18UBOOT_CONFIG ??= "sd" 18UBOOT_CONFIG ??= " \
19UBOOT_CONFIG[sd] = "mx6sxsabreauto_config,sdcard" 19 sd \
20UBOOT_CONFIG[qspi1] = "mx6sxsabreauto_qspi1_config" 20 ${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'sd-optee', '', d)} \
21UBOOT_CONFIG[nand] = "mx6sxsabreauto_nand_config,ubifs" 21"
22UBOOT_CONFIG[mfgtool] = "mx6sxsabreauto_config" 22UBOOT_CONFIG[sd] = "mx6sxsabreauto_config,sdcard"
23UBOOT_CONFIG[sd-optee] = "mx6sxsabreauto_optee_config,sdcard"
24UBOOT_CONFIG[qspi1] = "mx6sxsabreauto_qspi1_config"
25UBOOT_CONFIG[nand] = "mx6sxsabreauto_nand_config,ubifs"
26UBOOT_CONFIG[mfgtool] = "mx6sxsabreauto_config"
27
28OPTEE_BIN_EXT = "6sxauto"
23 29
24SERIAL_CONSOLES = "115200;ttymxc3" 30SERIAL_CONSOLES = "115200;ttymxc3"
25 31