diff options
Diffstat (limited to 'meta/recipes-bsp/uboot/u-boot.inc')
-rw-r--r-- | meta/recipes-bsp/uboot/u-boot.inc | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-bsp/uboot/u-boot.inc b/meta/recipes-bsp/uboot/u-boot.inc new file mode 100644 index 0000000000..889f6215ed --- /dev/null +++ b/meta/recipes-bsp/uboot/u-boot.inc | |||
@@ -0,0 +1,38 @@ | |||
1 | DESCRIPTION = "U-boot bootloader" | ||
2 | HOMEPAGE = "http://u-boot.sf.net" | ||
3 | SECTION = "bootloaders" | ||
4 | PRIORITY = "optional" | ||
5 | LICENSE = "GPL" | ||
6 | PROVIDES = "virtual/bootloader" | ||
7 | |||
8 | inherit deploy | ||
9 | |||
10 | PARALLEL_MAKE="" | ||
11 | |||
12 | EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}" | ||
13 | |||
14 | UBOOT_MACHINE ?= "${MACHINE}_config" | ||
15 | UBOOT_IMAGE ?= "u-boot-${MACHINE}-${PV}-${PR}.bin" | ||
16 | UBOOT_SYMLINK ?= "u-boot-${MACHINE}.bin" | ||
17 | |||
18 | do_compile () { | ||
19 | unset LDFLAGS | ||
20 | unset CFLAGS | ||
21 | unset CPPFLAGS | ||
22 | oe_runmake ${UBOOT_MACHINE} | ||
23 | oe_runmake all | ||
24 | } | ||
25 | |||
26 | do_deploy () { | ||
27 | install ${S}/u-boot.bin ${DEPLOYDIR}/${UBOOT_IMAGE} | ||
28 | |||
29 | cd ${DEPLOYDIR} | ||
30 | rm -f ${UBOOT_SYMLINK} | ||
31 | ln -sf ${UBOOT_IMAGE} ${UBOOT_SYMLINK} | ||
32 | } | ||
33 | addtask deploy before do_build after do_compile | ||
34 | |||
35 | do_install() { | ||
36 | install -d ${D}${bindir} | ||
37 | install -m 755 tools/mkimage ${D}${bindir}/ | ||
38 | } | ||