diff options
author | 2019-05-03 14:53:01 -0500 | |
---|---|---|
committer | 2019-05-03 17:07:57 -0300 | |
commit | 46fcbab00f7e01ded4609c09be89161783426f41 (patch) | |
tree | fbbd5e774fe766977e33bb476aac0250de0aabc8 | |
parent | 29fdb4a679cbf92c24cfbdd3fac76fb99aa35be4 (diff) | |
download | meta-freescale-46fcbab00f7e01ded4609c09be89161783426f41.tar.gz meta-freescale-46fcbab00f7e01ded4609c09be89161783426f41.tar.bz2 meta-freescale-46fcbab00f7e01ded4609c09be89161783426f41.zip |
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() { # mkimage for i.MX8 for target in ${IMXBOOT_TARGETS}; do bbnote "building ${SOC_TARGET} - ${target}" - make SOC=${SOC_TARGET} ${target} + make SOC=${SOC_TARGET} dtbs=${UBOOT_DTB_NAME} ${target} if [ -e "${BOOT_STAGING}/flash.bin" ]; then cp ${BOOT_STAGING}/flash.bin ${S}/${BOOT_CONFIG_MACHINE}-${target} fi |