From b977f03b27a2c7f9b36102fd7277b2e8682d7004 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Sat, 17 Mar 2012 17:52:20 +0000 Subject: u-boot-mxsboot: add Adds a native and nativesdk tasks that allow for automation of image generation for 'mxs' SOC family. Signed-off-by: Otavio Salvador --- recipes-bsp/u-boot/u-boot-mxsboot_2012.04.01.bb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 recipes-bsp/u-boot/u-boot-mxsboot_2012.04.01.bb diff --git a/recipes-bsp/u-boot/u-boot-mxsboot_2012.04.01.bb b/recipes-bsp/u-boot/u-boot-mxsboot_2012.04.01.bb new file mode 100644 index 0000000..74f621e --- /dev/null +++ b/recipes-bsp/u-boot/u-boot-mxsboot_2012.04.01.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "U-boot bootloader mxsboot tool" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb" +SECTION = "bootloader" + +PV = "v2012.04.01" + +SRCREV = "415d386877df49eb051b85ef74fa59a16dc17c7d" +SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git" + +S = "${WORKDIR}/git" + +EXTRA_OEMAKE = 'HOSTCC="${CC}" HOSTLD="${LD}" HOSTSTRIP=true CONFIG_MX28=y' + +do_compile () { + oe_runmake tools +} + +do_install () { + install -d ${D}${bindir} + install -m 0755 tools/mxsboot ${D}${bindir}/uboot-mxsboot + ln -sf uboot-mxsboot ${D}${bindir}/mxsboot +} + +BBCLASSEXTEND = "native nativesdk" -- cgit v1.2.3-54-g00ecf