imx-mkimage: install mkimage_imx8 binaries to BOOT_TOOLS
This binary is required for signing the U-Boot scripts generated by the U-Boot recipe but it wasn't available because this recipe was not installing it anywhere. At the same time, remove the installation from imx-boot, to avoid a conflict between the two (imx-mkimage is a dependency from imx-boot anyway). Signed-off-by: Hector Palacios <hector.palacios@digi.com>
This commit is contained in:
parent
6c9341bd8a
commit
b0ef3ea14f
|
|
@ -160,7 +160,6 @@ do_deploy () {
|
|||
install -m 0644 ${BOOT_STAGING}/m40_tcm.bin ${DEPLOYDIR}/${BOOT_TOOLS}
|
||||
install -m 0644 ${BOOT_STAGING}/m4_image.bin ${DEPLOYDIR}/${BOOT_TOOLS}
|
||||
fi
|
||||
install -m 0755 ${S}/${TOOLS_NAME} ${DEPLOYDIR}/${BOOT_TOOLS}
|
||||
|
||||
# copy makefile (soc.mak) for reference
|
||||
install -m 0644 ${BOOT_STAGING}/soc.mak ${DEPLOYDIR}/${BOOT_TOOLS}
|
||||
|
|
|
|||
|
|
@ -3,3 +3,9 @@
|
|||
# Use the v4.14 ga BSP branch
|
||||
SRCBRANCH = "imx_4.14.98_2.3.0"
|
||||
SRCREV = "2556000499f667123094af22326cfd8e4cbadaac"
|
||||
|
||||
do_deploy_append () {
|
||||
install -d ${DEPLOYDIR}/${BOOT_TOOLS}
|
||||
install -m 0755 ${S}/iMX8M/mkimage_imx8 ${DEPLOYDIR}/${BOOT_TOOLS}/mkimage_imx8m
|
||||
install -m 0755 ${S}/mkimage_imx8 ${DEPLOYDIR}/${BOOT_TOOLS}/mkimage_imx8
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue