diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2020-12-03 15:52:08 -0600 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2021-01-21 08:37:58 -0300 |
commit | 4d0adc756e0243828423b60ccdb4d499889d468c (patch) | |
tree | a68005ecf884919c34d2d6ffe662185900755536 /conf/machine/imx6sxsabreauto.conf | |
parent | 879d59d68c834727e29edcd20949d2f60db7b14c (diff) | |
download | meta-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.conf | 16 |
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" | |||
15 | PREFERRED_PROVIDER_u-boot = "u-boot-fslc" | 15 | PREFERRED_PROVIDER_u-boot = "u-boot-fslc" |
16 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot-fslc" | 16 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot-fslc" |
17 | 17 | ||
18 | UBOOT_CONFIG ??= "sd" | 18 | UBOOT_CONFIG ??= " \ |
19 | UBOOT_CONFIG[sd] = "mx6sxsabreauto_config,sdcard" | 19 | sd \ |
20 | UBOOT_CONFIG[qspi1] = "mx6sxsabreauto_qspi1_config" | 20 | ${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'sd-optee', '', d)} \ |
21 | UBOOT_CONFIG[nand] = "mx6sxsabreauto_nand_config,ubifs" | 21 | " |
22 | UBOOT_CONFIG[mfgtool] = "mx6sxsabreauto_config" | 22 | UBOOT_CONFIG[sd] = "mx6sxsabreauto_config,sdcard" |
23 | UBOOT_CONFIG[sd-optee] = "mx6sxsabreauto_optee_config,sdcard" | ||
24 | UBOOT_CONFIG[qspi1] = "mx6sxsabreauto_qspi1_config" | ||
25 | UBOOT_CONFIG[nand] = "mx6sxsabreauto_nand_config,ubifs" | ||
26 | UBOOT_CONFIG[mfgtool] = "mx6sxsabreauto_config" | ||
27 | |||
28 | OPTEE_BIN_EXT = "6sxauto" | ||
23 | 29 | ||
24 | SERIAL_CONSOLES = "115200;ttymxc3" | 30 | SERIAL_CONSOLES = "115200;ttymxc3" |
25 | 31 | ||