diff options
author | Tom Rini <tom_rini@mentor.com> | 2010-08-20 09:58:55 -0700 |
---|---|---|
committer | Tom Rini <tom_rini@mentor.com> | 2010-08-20 09:59:47 -0700 |
commit | 5b0d2716839c3d6a1c4b0a6eb5e4ebc313354828 (patch) | |
tree | 6e7a9a80a86928f25258ab3a3c9b2c24abdb1275 /recipes/u-boot/u-boot.inc | |
parent | e6eda83fd66a091b0337105178c2865c95af50b1 (diff) |
u-boot: Move the config target into do_configure
Signed-off-by: Tom Rini <tom_rini@mentor.com>
Diffstat (limited to 'recipes/u-boot/u-boot.inc')
-rw-r--r-- | recipes/u-boot/u-boot.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes/u-boot/u-boot.inc b/recipes/u-boot/u-boot.inc index 323eaef318..661bf3645d 100644 --- a/recipes/u-boot/u-boot.inc +++ b/recipes/u-boot/u-boot.inc @@ -17,11 +17,14 @@ UBOOT_BINARY ?= "u-boot.bin" UBOOT_IMAGE ?= "u-boot-${MACHINE}-${PV}-${PR}.bin" UBOOT_SYMLINK ?= "u-boot-${MACHINE}.bin" +do_configure () { + oe_runmake ${UBOOT_MACHINE} +} + do_compile () { unset LDFLAGS unset CFLAGS unset CPPFLAGS - oe_runmake ${UBOOT_MACHINE} oe_runmake all oe_runmake tools env } |