diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2021-08-21 19:48:39 -0500 |
---|---|---|
committer | Tom Hochstein <tom.hochstein@nxp.com> | 2021-08-21 19:48:39 -0500 |
commit | 4ebabc1936fd0d375541adc47be01878d00b5904 (patch) | |
tree | 14f861b882451b1acc55a02669040e5fa7ce8029 /conf/machine/imx6qdlsabreauto.conf | |
parent | 0407a9ecbaedd8aae6be96225632dbe534840e44 (diff) | |
download | meta-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.conf | 21 |
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 | |||
37 | SPL_BINARY:pn-u-boot-fslc = "SPL" | 36 | SPL_BINARY:pn-u-boot-fslc = "SPL" |
38 | UBOOT_MACHINE:pn-u-boot-fslc ?= "mx6sabreauto_defconfig" | 37 | UBOOT_CONFIG:pn-u-boot-fslc ??= "sd-fslc" |
39 | UBOOT_SUFFIX:pn-u-boot-fslc = "img" | 38 | UBOOT_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. | ||
45 | SPL_BINARY:pn-u-boot-imx = "" | 41 | SPL_BINARY:pn-u-boot-imx = "" |
46 | UBOOT_MACHINE:pn-u-boot-imx = "mx6qsabreauto_defconfig" | 42 | UBOOT_CONFIG:pn-u-boot-imx ??= " \ |
43 | sd-imx \ | ||
44 | " | ||
47 | UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx" | 45 | UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx" |
48 | UBOOT_SUFFIX:pn-u-boot-imx = "imx" | 46 | UBOOT_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. | ||
50 | UBOOT_CONFIG[sd-fslc] = "mx6sabreauto_defconfig,sdcard" | ||
51 | UBOOT_CONFIG[sd-imx] = "mx6qpsabreauto_defconfig,sdcard" | ||
52 | UBOOT_CONFIG[sd-optee-imx] = "mx6qpsabreauto_optee_defconfig,sdcard" | ||
53 | UBOOT_CONFIG[eimnor-imx] = "mx6qpsabreauto_eimnor_defconfig" | ||
54 | UBOOT_CONFIG[nand-imx] = "mx6qpsabreauto_nand_defconfig,ubifs" | ||
55 | UBOOT_CONFIG[spinor-imx] = "mx6qpsabreauto_spinor_defconfig" | ||
56 | UBOOT_CONFIG[sata-imx] = "mx6qpsabreauto_sata_defconfig" | ||
57 | UBOOT_CONFIG[mfgtool-imx] = "mx6qpsabreauto_defconfig" | ||
58 | |||
50 | WKS_FILE = " \ | 59 | WKS_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', \ |