meta-digi-arm: machine: do not reset EXTRA_IMAGEDEPENDS
Use += operator to prevent resetting the value of the EXTRA_IMAGEDEPENDS variable. That is how it's mostly used elsewhere. Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
7d90e6276b
commit
7e7fba9ba5
|
|
@ -11,7 +11,7 @@ UBOOT_SUFFIX = "bin"
|
||||||
UBOOT_HAS_FASTBOOT = "true"
|
UBOOT_HAS_FASTBOOT = "true"
|
||||||
|
|
||||||
# The bootloader image that gets flashed consists of U-Boot and several fw binaries
|
# The bootloader image that gets flashed consists of U-Boot and several fw binaries
|
||||||
EXTRA_IMAGEDEPENDS = "imx-boot"
|
EXTRA_IMAGEDEPENDS += "imx-boot"
|
||||||
BOOTLOADER_IMAGE_RECIPE = "imx-boot"
|
BOOTLOADER_IMAGE_RECIPE = "imx-boot"
|
||||||
BOOTABLE_FILENAME = "${UBOOT_PREFIX}-${MACHINE}.bin"
|
BOOTABLE_FILENAME = "${UBOOT_PREFIX}-${MACHINE}.bin"
|
||||||
SDIMG_BOOTLOADER = "${DEPLOY_DIR_IMAGE}/${BOOTABLE_FILENAME}"
|
SDIMG_BOOTLOADER = "${DEPLOY_DIR_IMAGE}/${BOOTABLE_FILENAME}"
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ UBOOT_SUFFIX = "bin"
|
||||||
UBOOT_HAS_FASTBOOT = "true"
|
UBOOT_HAS_FASTBOOT = "true"
|
||||||
|
|
||||||
# The bootloader image that gets flashed consists of U-Boot and several fw binaries
|
# The bootloader image that gets flashed consists of U-Boot and several fw binaries
|
||||||
EXTRA_IMAGEDEPENDS = "imx-boot"
|
EXTRA_IMAGEDEPENDS += "imx-boot"
|
||||||
BOOTLOADER_IMAGE_RECIPE = "imx-boot"
|
BOOTLOADER_IMAGE_RECIPE = "imx-boot"
|
||||||
# BOOTLOADER_SEEK_USERDATA is 33 for step A of the silicon and 32 for step B
|
# BOOTLOADER_SEEK_USERDATA is 33 for step A of the silicon and 32 for step B
|
||||||
BOOTLOADER_SEEK_USERDATA = "32"
|
BOOTLOADER_SEEK_USERDATA = "32"
|
||||||
|
|
|
||||||
|
|
@ -244,7 +244,7 @@ PREFERRED_VERSION_optee-test:mx8-nxp-bsp ??= "3.17.0.imx"
|
||||||
#Use i.MX opencv Version for mx8
|
#Use i.MX opencv Version for mx8
|
||||||
PREFERRED_VERSION_opencv:mx8-nxp-bsp ??= "4.6.0.imx"
|
PREFERRED_VERSION_opencv:mx8-nxp-bsp ??= "4.6.0.imx"
|
||||||
|
|
||||||
EXTRA_IMAGEDEPENDS = "u-boot"
|
EXTRA_IMAGEDEPENDS += "u-boot"
|
||||||
|
|
||||||
KERNEL_IMAGETYPE ?= "zImage"
|
KERNEL_IMAGETYPE ?= "zImage"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue