From c6d6e49d07fdc13d0c84db600a4403ca29bfa2f9 Mon Sep 17 00:00:00 2001 From: Chase Maupin Date: Tue, 15 Mar 2011 08:31:01 -0500 Subject: u-boot.inc: allow variable make targets * Later versions of u-boot sometimes have top level make targets such as u-boot.imx, u-boot.kwb, and for upcoming TI devices u-boot.ti. * These targets define different calls to the mkimage tool to change the images created, such as changing the load address. * This change allows recipes to change the default make target of "all" to something like u-boot.ti or u-boot.imx by setting the UBOOT_MAKE_TARGET variable. (From OE-Core rev: 1e675fac4f7f22028700d7c5bc376d029af592e0) Signed-off-by: Chase Maupin Signed-off-by: Richard Purdie --- meta/recipes-bsp/uboot/u-boot.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-bsp/uboot/u-boot.inc b/meta/recipes-bsp/uboot/u-boot.inc index d1cebeedfb..058e3bad1c 100644 --- a/meta/recipes-bsp/uboot/u-boot.inc +++ b/meta/recipes-bsp/uboot/u-boot.inc @@ -14,13 +14,14 @@ EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} OPTFLAGS='-O2'" UBOOT_MACHINE ?= "${MACHINE}_config" UBOOT_IMAGE ?= "u-boot-${MACHINE}-${PV}-${PR}.bin" UBOOT_SYMLINK ?= "u-boot-${MACHINE}.bin" +UBOOT_MAKE_TARGET ?= "all" do_compile () { unset LDFLAGS unset CFLAGS unset CPPFLAGS oe_runmake ${UBOOT_MACHINE} - oe_runmake all + oe_runmake ${UBOOT_MAKE_TARGET} } do_deploy () { -- cgit v1.2.3-54-g00ecf