]> code.ossystems Code Review - meta-freescale.git/commitdiff
imx-boot: Drop independent DCD component
authorTom Hochstein <tom.hochstein@nxp.com>
Wed, 22 May 2019 18:52:36 +0000 (13:52 -0500)
committerOtavio Salvador <otavio@ossystems.com.br>
Thu, 13 Jun 2019 16:27:33 +0000 (13:27 -0300)
The DCD component has moved into the firmware.

Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
recipes-bsp/imx-mkimage/imx-boot_0.2.bb

index bd57dd03c6b4cd091f0f01cbc16ccb49433e17d0..13e161acdfa6d17d69a8e5c4a7641f77185459c0 100644 (file)
@@ -41,10 +41,6 @@ ATF_MACHINE_NAME_mx8mq = "bl31-imx8mq.bin"
 ATF_MACHINE_NAME_mx8mm = "bl31-imx8mm.bin"
 ATF_MACHINE_NAME_append = "${@bb.utils.contains('COMBINED_FEATURES', 'optee', '-optee', '', d)}"
 
-DCD_NAME ?= "imx8qm_dcd.cfg.tmp"
-DCD_NAME_mx8qm = "imx8qm_dcd.cfg.tmp"
-DCD_NAME_mx8qxp = "imx8qx_dcd.cfg.tmp"
-
 UBOOT_NAME = "u-boot-${MACHINE}.bin-${UBOOT_CONFIG}"
 BOOT_CONFIG_MACHINE = "${BOOT_NAME}-${MACHINE}-${UBOOT_CONFIG}.bin"
 
@@ -141,15 +137,11 @@ deploy_mx8m() {
 }
 deploy_mx8() {
     install -d ${DEPLOYDIR}/${BOOT_TOOLS}
-    install -m 0644 ${BOOT_STAGING}/${DCD_NAME}              ${DEPLOYDIR}/${BOOT_TOOLS}
     install -m 0644 ${BOOT_STAGING}/mx8qm-ahab-container.img ${DEPLOYDIR}/${BOOT_TOOLS}
     install -m 0755 ${S}/${TOOLS_NAME}                       ${DEPLOYDIR}/${BOOT_TOOLS}
 }
 deploy_mx8x() {
     install -d ${DEPLOYDIR}/${BOOT_TOOLS}
-    if [ "${MACHINE}" = "imx8qxpa0mek" ]; then
-        install -m 0644 ${BOOT_STAGING}/${DCD_NAME}          ${DEPLOYDIR}/${BOOT_TOOLS}
-    fi
     install -m 0644 ${BOOT_STAGING}/mx8qx-ahab-container.img ${DEPLOYDIR}/${BOOT_TOOLS}
     install -m 0755 ${S}/${TOOLS_NAME}                       ${DEPLOYDIR}/${BOOT_TOOLS}
 }