diff options
-rw-r--r-- | conf/machine/imx6ulevk.conf | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/conf/machine/imx6ulevk.conf b/conf/machine/imx6ulevk.conf index 18b6b04b..a8acb43d 100644 --- a/conf/machine/imx6ulevk.conf +++ b/conf/machine/imx6ulevk.conf | |||
@@ -9,7 +9,7 @@ MACHINEOVERRIDES =. "mx6:mx6ul:" | |||
9 | include conf/machine/include/imx-base.inc | 9 | include conf/machine/include/imx-base.inc |
10 | include conf/machine/include/tune-cortexa7.inc | 10 | include conf/machine/include/tune-cortexa7.inc |
11 | 11 | ||
12 | MACHINE_FEATURES += " pci wifi bluetooth" | 12 | MACHINE_FEATURES += "wifi bluetooth bcm4339 bcm43455" |
13 | 13 | ||
14 | KERNEL_DEVICETREE = " \ | 14 | KERNEL_DEVICETREE = " \ |
15 | imx6ul-14x14-evk-btwifi.dtb \ | 15 | imx6ul-14x14-evk-btwifi.dtb \ |
@@ -29,8 +29,14 @@ UBOOT_SUFFIX = "img" | |||
29 | SPL_BINARY = "SPL" | 29 | SPL_BINARY = "SPL" |
30 | WKS_FILE = "imx-uboot-spl-bootpart.wks.in" | 30 | WKS_FILE = "imx-uboot-spl-bootpart.wks.in" |
31 | 31 | ||
32 | UBOOT_CONFIG ??= "sd" | 32 | UBOOT_CONFIG ??= " \ |
33 | UBOOT_CONFIG[sd] = "mx6ul_14x14_evk_config,sdcard" | 33 | sd \ |
34 | UBOOT_CONFIG[emmc] = "mx6ul_14x14_evk_emmc_config,sdcard" | 34 | ${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'sd-optee', '', d)} \ |
35 | UBOOT_CONFIG[qspi1] = "mx6ul_14x14_evk_qspi1_config" | 35 | " |
36 | UBOOT_CONFIG[mfgtool] = "mx6ul_14x14_evk_config" | 36 | UBOOT_CONFIG[sd] = "mx6ul_14x14_evk_config,sdcard" |
37 | UBOOT_CONFIG[sd-optee] = "mx6ul_14x14_evk_optee_config,sdcard" | ||
38 | UBOOT_CONFIG[emmc] = "mx6ul_14x14_evk_emmc_config,sdcard" | ||
39 | UBOOT_CONFIG[qspi1] = "mx6ul_14x14_evk_qspi1_config" | ||
40 | UBOOT_CONFIG[mfgtool] = "mx6ul_14x14_evk_config" | ||
41 | |||
42 | OPTEE_BIN_EXT = "6ulevk" | ||