diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2022-07-29 18:21:41 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-29 18:21:41 -0300 |
commit | f2599b504a912def90e30b167c7e9dfb507ee485 (patch) | |
tree | 8b64856bcb7362de891cd14c008f6f97d5e373ca /conf/machine/imx6qdlsabresd.conf | |
parent | 8b801b824e696babbe1569e8f53657f83694ce71 (diff) | |
parent | daa53e8f2acf694b47ce8a6538e4fc2073db5247 (diff) | |
download | meta-freescale-f2599b504a912def90e30b167c7e9dfb507ee485.tar.gz |
Merge pull request #1154 from Freescale/backport-1152-to-kirkstone
[Backport kirkstone] Fix u-boot-imx-mfgtool for i.MX 6 SABRE, NXP BSP
Diffstat (limited to 'conf/machine/imx6qdlsabresd.conf')
-rw-r--r-- | conf/machine/imx6qdlsabresd.conf | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/conf/machine/imx6qdlsabresd.conf b/conf/machine/imx6qdlsabresd.conf index 81d1c962..62ad478e 100644 --- a/conf/machine/imx6qdlsabresd.conf +++ b/conf/machine/imx6qdlsabresd.conf | |||
@@ -49,19 +49,24 @@ UBOOT_SUFFIX:pn-u-boot-fslc = "img" | |||
49 | ### u-boot-imx settings ### | 49 | ### u-boot-imx settings ### |
50 | SPL_BINARY:pn-u-boot-imx = "" | 50 | SPL_BINARY:pn-u-boot-imx = "" |
51 | UBOOT_CONFIG:pn-u-boot-imx ??= " \ | 51 | UBOOT_CONFIG:pn-u-boot-imx ??= " \ |
52 | sd-imx \ | 52 | sd \ |
53 | ${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'sd-optee-imx', '', d)} \ | 53 | ${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'sd-optee', '', d)} \ |
54 | " | 54 | " |
55 | UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx" | 55 | UBOOT_MAKE_TARGET:pn-u-boot-imx = "u-boot.imx" |
56 | UBOOT_SUFFIX:pn-u-boot-imx = "imx" | 56 | UBOOT_SUFFIX:pn-u-boot-imx = "imx" |
57 | UBOOT_MAKE_TARGET:pn-u-boot-imx-mfgtool = "u-boot.imx" | ||
58 | UBOOT_SUFFIX:pn-u-boot-imx-mfgtool = "imx" | ||
59 | |||
60 | UBOOT_CONFIG[sd] = "${UBOOT_CONFIG_MACHINE_NAME}_defconfig,sdcard" | ||
61 | UBOOT_CONFIG[sd-optee] = "${UBOOT_CONFIG_MACHINE_NAME}_optee_defconfig,sdcard" | ||
62 | UBOOT_CONFIG[sata] = "${UBOOT_CONFIG_MACHINE_NAME}_sata_defconfig" | ||
63 | UBOOT_CONFIG[mfgtool] = "${UBOOT_CONFIG_MACHINE_NAME}_defconfig" | ||
57 | 64 | ||
58 | # The u-boot-imx does not provide unified functionality for DL/Q/QP SoC | 65 | # The u-boot-imx does not provide unified functionality for DL/Q/QP SoC |
59 | # variants. Change the defconfig to the targeted SoC variant. | 66 | # variants. Change the defconfig to the targeted SoC variant. |
60 | UBOOT_CONFIG[sd-fslc] = "mx6sabresd_defconfig,sdcard" | 67 | UBOOT_CONFIG_MACHINE_NAME = "mx6sabresd" |
61 | UBOOT_CONFIG[sd-imx] = "mx6qsabresd_defconfig,sdcard" | 68 | UBOOT_CONFIG_MACHINE_NAME:pn-u-boot-imx = "mx6qsabresd" |
62 | UBOOT_CONFIG[sd-optee-imx] = "mx6qsabresd_optee_defconfig,sdcard" | 69 | UBOOT_CONFIG_MACHINE_NAME:pn-u-boot-imx-mfgtool = "mx6qsabresd" |
63 | UBOOT_CONFIG[sata-imx] = "mx6qsabresd_sata_defconfig" | ||
64 | UBOOT_CONFIG[mfgtool-imx] = "mx6qsabresd_defconfig" | ||
65 | 70 | ||
66 | WKS_FILE = " \ | 71 | WKS_FILE = " \ |
67 | ${@bb.utils.contains('IMX_DEFAULT_BOOTLOADER', \ | 72 | ${@bb.utils.contains('IMX_DEFAULT_BOOTLOADER', \ |