summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-bsp/uboot/u-boot.inc3
1 files changed, 2 insertions, 1 deletions
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'"
14UBOOT_MACHINE ?= "${MACHINE}_config" 14UBOOT_MACHINE ?= "${MACHINE}_config"
15UBOOT_IMAGE ?= "u-boot-${MACHINE}-${PV}-${PR}.bin" 15UBOOT_IMAGE ?= "u-boot-${MACHINE}-${PV}-${PR}.bin"
16UBOOT_SYMLINK ?= "u-boot-${MACHINE}.bin" 16UBOOT_SYMLINK ?= "u-boot-${MACHINE}.bin"
17UBOOT_MAKE_TARGET ?= "all"
17 18
18do_compile () { 19do_compile () {
19 unset LDFLAGS 20 unset LDFLAGS
20 unset CFLAGS 21 unset CFLAGS
21 unset CPPFLAGS 22 unset CPPFLAGS
22 oe_runmake ${UBOOT_MACHINE} 23 oe_runmake ${UBOOT_MACHINE}
23 oe_runmake all 24 oe_runmake ${UBOOT_MAKE_TARGET}
24} 25}
25 26
26do_deploy () { 27do_deploy () {