u-boot-mkimage: Update 2009.08 recipe

Remove legacy staging function and enable native install

Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
Joshua Lock 2010-01-13 11:09:32 +00:00
parent b731a08ebf
commit f97e68456f
1 changed files with 8 additions and 21 deletions

View File

@ -2,38 +2,25 @@ DESCRIPTION = "U-boot bootloader mkimage tool"
LICENSE = "GPL"
SECTION = "bootloader"
PR = "r0"
PR = "r1"
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) == '']}"
EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}"
BBCLASSEXTEND = "native nativesdk"
do_compile () {
oe_runmake smdk2410_config
oe_runmake tools
oe_runmake smdk2410_config
oe_runmake tools
}
NATIVE_INSTALL_WORKS = "1"
do_install () {
install -d ${D}${bindir}
install -m 0755 tools/mkimage ${D}${bindir}/
install -d ${D}${bindir}
install -m 0755 tools/mkimage ${D}${bindir}/uboot-mkimage
ln -sf uboot-mkimage ${D}${bindir}/mkimage
}
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
}