u-boot-mkimage-2009.08 (and BBCLASSEXTEND native nativesdk)

This commit is contained in:
Esben Haabendal 2009-12-15 15:07:31 +01:00 committed by Joshua Lock
parent 3d3053e6cc
commit bd375075bd
1 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,39 @@
DESCRIPTION = "U-boot bootloader mkimage tool"
LICENSE = "GPL"
SECTION = "bootloader"
PR = "r0"
SRC_URI = "ftp://ftp.denx.de/pub/u-boot/u-boot-${PV}.tar.bz2"
S = "${WORKDIR}/u-boot-${PV}"
EXTRA_OEMAKE = "${@['CROSS_COMPILE=${TARGET_PREFIX}',''][bb.data.getVar('TARGET_PREFIX', d, 1) == '']}"
BBCLASSEXTEND = "native nativesdk"
do_compile () {
oe_runmake smdk2410_config
oe_runmake tools
}
do_install () {
install -d ${D}${bindir}
install -m 0755 tools/mkimage ${D}${bindir}/
}
do_stage_uboot () {
install -d ${STAGING_BINDIR}
install -m 0755 tools/mkimage ${STAGING_BINDIR}/uboot-mkimage
ln -sf uboot-mkimage ${STAGING_BINDIR}/mkimage
}
do_stage () {
do_stage_uboot
}
# do_stage is override is overridden by native.bbclass
# so we have to specifically override it for virtclass-native also...
do_stage_virtclass-native () {
do_stage_uboot
}