diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-10-23 17:48:58 +0200 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-10-23 17:48:58 +0200 |
commit | 6e7714846b1931d12af941938b2a547ca55adaa9 (patch) | |
tree | 25b1e4e1f66da1490ed616fabdf06a4422088d91 /packages/u-boot/u-boot-mkimage-native_1.3.2.bb | |
parent | 82b5d4ce1ba5e74f7d700af30d3e4b0a4e2d243e (diff) |
u-boot-mkimage-native: added 1.3.2 (from Poky)
This version can be used instead of u-boot-mkimage-openmoko-native
recipe (which contains lot of patches not required for mkimage tool).
Diffstat (limited to 'packages/u-boot/u-boot-mkimage-native_1.3.2.bb')
-rw-r--r-- | packages/u-boot/u-boot-mkimage-native_1.3.2.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/u-boot/u-boot-mkimage-native_1.3.2.bb b/packages/u-boot/u-boot-mkimage-native_1.3.2.bb new file mode 100644 index 0000000000..38dd700d08 --- /dev/null +++ b/packages/u-boot/u-boot-mkimage-native_1.3.2.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "U-boot bootloader mkimage tool" +LICENSE = "GPL" +SECTION = "bootloader" + +SRC_URI = "ftp://ftp.denx.de/pub/u-boot/u-boot-${PV}.tar.bz2 \ + file://fix-arm920t-eabi.patch;patch=1" + +S = "${WORKDIR}/u-boot-${PV}" + +inherit native + +EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}" + +do_compile () { + oe_runmake smdk2410_config + oe_runmake tools +} + +do_stage () { + install -m 0755 tools/mkimage ${STAGING_BINDIR_NATIVE}/uboot-mkimage + ln -sf ${STAGING_BINDIR_NATIVE}/uboot-mkimage ${STAGING_BINDIR_NATIVE}/mkimage +} |