As some variables are now assigned with ?= in colibri-vf.conf and imx-base.inc make sure that colibri-vf.conf takes precedence. (e.g. UBOOT_MAKE_TARGET) UBOOT_MAKE_TARGET is assigned with ?= in imx-base.inc and u-boot.inc. So in order to have the machine.conf file take precedence use a = assignemnt. Changing the ?= to ??= in imx-base.inc would always be overridden from the ?= "all" assignment in u-boot.inc
Signed-off-by: Max Krummenacher <[email protected]> Acked-by: Stefan Agner <[email protected]> --- conf/machine/colibri-vf.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/colibri-vf.conf b/conf/machine/colibri-vf.conf index b7cbfb3..c64cac3 100644 --- a/conf/machine/colibri-vf.conf +++ b/conf/machine/colibri-vf.conf @@ -25,7 +25,7 @@ PREFERRED_VERSION_mqxboot ?= "1.%" # U-Boot NAND binary includes 0x400 padding required for NAND boot UBOOT_BINARY ?= "u-boot-nand.imx" -UBOOT_MAKE_TARGET ?= "u-boot-nand.imx" +UBOOT_MAKE_TARGET = "u-boot-nand.imx" UBOOT_MACHINE ?= "colibri_vf_defconfig" IMAGE_FSTYPES = "sdcard.gz tar.xz ubifs ubi" -- 2.5.5 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
