diff options
author | Philip Balister <philip@balister.org> | 2007-01-02 17:48:09 +0000 |
---|---|---|
committer | Philip Balister <philip@balister.org> | 2007-01-02 17:48:09 +0000 |
commit | 7edddf6ffbbcc2bf41b42edcb038716a0578f7d2 (patch) | |
tree | d76e99eb323ed22c085a54ac1fae4ff85830f90c /packages/uboot | |
parent | a7c7d20784667526ec3fce58da7efe2b415aa884 (diff) |
u-boot_1.1.6.bb : Add new bb file to build u-boot-1.1.6.
Diffstat (limited to 'packages/uboot')
-rw-r--r-- | packages/uboot/u-boot_1.1.6.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/uboot/u-boot_1.1.6.bb b/packages/uboot/u-boot_1.1.6.bb new file mode 100644 index 0000000000..b45e86611b --- /dev/null +++ b/packages/uboot/u-boot_1.1.6.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "U-boot bootloader" +PROVIDES = "virtual/bootloader" +SECTION = "bootloader" +PRIORITY = "optional" +LICENSE = "GPL" + +PR = "r0" + +SRC_URI = "ftp://ftp.denx.de/pub/u-boot/u-boot-1.1.6.tar.bz2" + +EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}" + +UBOOT_MACHINE ?= "${MACHINE}_config" +UBOOT_IMAGE = "u-boot-${MACHINE}-${PV}-${PR}.bin" + +PACKAGE_ARCH = "${MACHINE_ARCH}" + +do_compile () { + unset LDFLAGS + unset CFLAGS + unset CPPFLAGS + oe_runmake ${UBOOT_MACHINE} + oe_runmake all +} + +do_stage() { + install -m755 tools/mkimage ${STAGING_BINDIR_NATIVE} +} + +do_deploy () { + install -d ${DEPLOY_DIR_IMAGE} + install ${S}/u-boot.bin ${DEPLOY_DIR_IMAGE}/${UBOOT_IMAGE} +} +do_deploy[dirs] = "${S}" +addtask deploy before do_build after do_compile |