summaryrefslogtreecommitdiffstats
path: root/conf/machine/imx6qdlsabreauto.conf
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2021-08-21 19:48:39 -0500
committerTom Hochstein <tom.hochstein@nxp.com>2021-08-21 19:48:39 -0500
commit4ebabc1936fd0d375541adc47be01878d00b5904 (patch)
tree14f861b882451b1acc55a02669040e5fa7ce8029 /conf/machine/imx6qdlsabreauto.conf
parent0407a9ecbaedd8aae6be96225632dbe534840e44 (diff)
downloadmeta-freescale-4ebabc1936fd0d375541adc47be01878d00b5904.tar.gz
imx6qdlsabre*: Add uboot config options for u-boot-imx
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'conf/machine/imx6qdlsabreauto.conf')
-rw-r--r--conf/machine/imx6qdlsabreauto.conf21
1 files changed, 15 insertions, 6 deletions
diff --git a/conf/machine/imx6qdlsabreauto.conf b/conf/machine/imx6qdlsabreauto.conf
index 8069fb3f..af8a9885 100644
--- a/conf/machine/imx6qdlsabreauto.conf
+++ b/conf/machine/imx6qdlsabreauto.conf
@@ -33,20 +33,29 @@ KERNEL_DEVICETREE:use-mainline-bsp = " \
33" 33"
34 34
35### u-boot-fslc settings ### 35### u-boot-fslc settings ###
36
37SPL_BINARY:pn-u-boot-fslc = "SPL" 36SPL_BINARY:pn-u-boot-fslc = "SPL"
38UBOOT_MACHINE:pn-u-boot-fslc ?= "mx6sabreauto_defconfig" 37UBOOT_CONFIG:pn-u-boot-fslc ??= "sd-fslc"
39UBOOT_SUFFIX:pn-u-boot-fslc = "img" 38UBOOT_SUFFIX:pn-u-boot-fslc = "img"
40 39
41### u-boot-imx settings ### 40### u-boot-imx settings ###
42
43# The u-boot-imx does not provide unified functionality for DL/Q/QP SoC
44# variants. Change the defconfig to the targeted SoC variant.
45SPL_BINARY:pn-u-boot-imx = "" 41SPL_BINARY:pn-u-boot-imx = ""
46UBOOT_MACHINE:pn-u-boot-imx = "mx6qsabreauto_defconfig" 42UBOOT_CONFIG:pn-u-boot-imx ??= " \
43 sd-imx \
44"
47UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx" 45UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx"
48UBOOT_SUFFIX:pn-u-boot-imx = "imx" 46UBOOT_SUFFIX:pn-u-boot-imx = "imx"
49 47
48# The u-boot-imx does not provide unified functionality for DL/Q/QP SoC
49# variants. Change the defconfig to the targeted SoC variant.
50UBOOT_CONFIG[sd-fslc] = "mx6sabreauto_defconfig,sdcard"
51UBOOT_CONFIG[sd-imx] = "mx6qpsabreauto_defconfig,sdcard"
52UBOOT_CONFIG[sd-optee-imx] = "mx6qpsabreauto_optee_defconfig,sdcard"
53UBOOT_CONFIG[eimnor-imx] = "mx6qpsabreauto_eimnor_defconfig"
54UBOOT_CONFIG[nand-imx] = "mx6qpsabreauto_nand_defconfig,ubifs"
55UBOOT_CONFIG[spinor-imx] = "mx6qpsabreauto_spinor_defconfig"
56UBOOT_CONFIG[sata-imx] = "mx6qpsabreauto_sata_defconfig"
57UBOOT_CONFIG[mfgtool-imx] = "mx6qpsabreauto_defconfig"
58
50WKS_FILE = " \ 59WKS_FILE = " \
51 ${@bb.utils.contains('IMX_DEFAULT_BOOTLOADER', \ 60 ${@bb.utils.contains('IMX_DEFAULT_BOOTLOADER', \
52 'u-boot-fslc', 'imx-uboot-spl-bootpart.wks.in', \ 61 'u-boot-fslc', 'imx-uboot-spl-bootpart.wks.in', \