Set the default value for IMAGE_BOOTLOADER explicitly instead of override it to be clean.
WaRP use eMMC boot partition by default and the u-boot inside .sdcard image does not override it. However, building u-boot binary anyway in order to provide a binary to be used if an update is needed see how-to override eMMC boot partition on the following link http://git.denx.de/?p=u-boot.git;a=blob;f=board/warp/README It is only changed back to default value to ease u-boot manual update for the user. Signed-off-by: Daiane Angolini <[email protected]> --- conf/machine/imx6sl-warp.conf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/conf/machine/imx6sl-warp.conf b/conf/machine/imx6sl-warp.conf index 536e3d0..da782e6 100644 --- a/conf/machine/imx6sl-warp.conf +++ b/conf/machine/imx6sl-warp.conf @@ -27,8 +27,12 @@ include conf/machine/include/tune-cortexa9.inc SOC_FAMILY = "mx6:mx6sl" -# Use eMMC boot partition by default -IMAGE_BOOTLOADER ?= "" +# WaRP use eMMC boot partition by default and the u-boot inside .sdcard image +# does not override it. However, building u-boot binary anyway in order to provide +# a binary to be used if an update is needed +# see how-to override eMMC boot partition on the following link +# http://git.denx.de/?p=u-boot.git;a=blob;f=board/warp/README +IMAGE_BOOTLOADER ?= "u-boot" UBOOT_MACHINE ?= "warp_defconfig" -- 1.9.1 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
