diff options
Diffstat (limited to 'meta/packages/uboot/u-boot-mkimage-native_1.3.2.bb')
-rw-r--r-- | meta/packages/uboot/u-boot-mkimage-native_1.3.2.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/packages/uboot/u-boot-mkimage-native_1.3.2.bb b/meta/packages/uboot/u-boot-mkimage-native_1.3.2.bb new file mode 100644 index 0000000000..38dd700d08 --- /dev/null +++ b/meta/packages/uboot/u-boot-mkimage-native_1.3.2.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | DESCRIPTION = "U-boot bootloader mkimage tool" | ||
2 | LICENSE = "GPL" | ||
3 | SECTION = "bootloader" | ||
4 | |||
5 | SRC_URI = "ftp://ftp.denx.de/pub/u-boot/u-boot-${PV}.tar.bz2 \ | ||
6 | file://fix-arm920t-eabi.patch;patch=1" | ||
7 | |||
8 | S = "${WORKDIR}/u-boot-${PV}" | ||
9 | |||
10 | inherit native | ||
11 | |||
12 | EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}" | ||
13 | |||
14 | do_compile () { | ||
15 | oe_runmake smdk2410_config | ||
16 | oe_runmake tools | ||
17 | } | ||
18 | |||
19 | do_stage () { | ||
20 | install -m 0755 tools/mkimage ${STAGING_BINDIR_NATIVE}/uboot-mkimage | ||
21 | ln -sf ${STAGING_BINDIR_NATIVE}/uboot-mkimage ${STAGING_BINDIR_NATIVE}/mkimage | ||
22 | } | ||