diff options
author | Joshua Watt <Joshua.Watt@garmin.com> | 2019-05-03 14:53:01 -0500 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2019-09-04 14:33:22 -0300 |
commit | 608c8abd86a4b4353f370c13c1cc43b42e44e2fd (patch) | |
tree | 029319dcf333a930af143b27e549873efc1689a4 | |
parent | b08e5e574aae50540b0581672337ce44a8d4d844 (diff) | |
download | meta-freescale-608c8abd86a4b4353f370c13c1cc43b42e44e2fd.tar.gz |
imx-boot: Pass DTB names to make
Passes the name of the DTBs to be built to make. This allows alternate
DTBs to be built instead of assuming the default
Signed-off-by: Joshua Watt <Joshua.Watt@garmin.com>
-rw-r--r-- | recipes-bsp/imx-mkimage/imx-boot_0.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/imx-mkimage/imx-boot_0.2.bb b/recipes-bsp/imx-mkimage/imx-boot_0.2.bb index 68492a9b..32d5aa28 100644 --- a/recipes-bsp/imx-mkimage/imx-boot_0.2.bb +++ b/recipes-bsp/imx-mkimage/imx-boot_0.2.bb | |||
@@ -111,7 +111,7 @@ do_compile() { | |||
111 | # mkimage for i.MX8 | 111 | # mkimage for i.MX8 |
112 | for target in ${IMXBOOT_TARGETS}; do | 112 | for target in ${IMXBOOT_TARGETS}; do |
113 | bbnote "building ${SOC_TARGET} - ${target}" | 113 | bbnote "building ${SOC_TARGET} - ${target}" |
114 | make SOC=${SOC_TARGET} ${target} | 114 | make SOC=${SOC_TARGET} dtbs=${UBOOT_DTB_NAME} ${target} |
115 | if [ -e "${BOOT_STAGING}/flash.bin" ]; then | 115 | if [ -e "${BOOT_STAGING}/flash.bin" ]; then |
116 | cp ${BOOT_STAGING}/flash.bin ${S}/${BOOT_CONFIG_MACHINE}-${target} | 116 | cp ${BOOT_STAGING}/flash.bin ${S}/${BOOT_CONFIG_MACHINE}-${target} |
117 | fi | 117 | fi |