From 87fae6e7d89567772e4919a2dc88c8fc50b2c9d8 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Tue, 3 Sep 2013 15:57:34 -0300 Subject: u-boot-fslc: Update to 2013.10-rc2 This patch updates the source against the 2013.10-rc2 release; this also renames the u-boot-mxsboot recipe to u-boot-fslc-mxsboot so it makes it clear that it is based on u-boot-fslc version. The license checksum has changes as U-Boot now uses SPDX Unique License Identifiers (eca3aeb Licenses: introduce SPDX Unique Lincense Identifiers). Change-Id: I761d92f3f1eaf419a238d544357293a3a953b7c8 Signed-off-by: Otavio Salvador --- recipes-bsp/u-boot/u-boot-fslc-mxsboot_2013.10.bb | 26 +++++++++++++++++++++++ recipes-bsp/u-boot/u-boot-fslc_2013.07.bb | 18 ---------------- recipes-bsp/u-boot/u-boot-fslc_2013.10.bb | 18 ++++++++++++++++ recipes-bsp/u-boot/u-boot-mxsboot_2013.07.bb | 25 ---------------------- 4 files changed, 44 insertions(+), 43 deletions(-) create mode 100644 recipes-bsp/u-boot/u-boot-fslc-mxsboot_2013.10.bb delete mode 100644 recipes-bsp/u-boot/u-boot-fslc_2013.07.bb create mode 100644 recipes-bsp/u-boot/u-boot-fslc_2013.10.bb delete mode 100644 recipes-bsp/u-boot/u-boot-mxsboot_2013.07.bb diff --git a/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2013.10.bb b/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2013.10.bb new file mode 100644 index 0000000..b87a763 --- /dev/null +++ b/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2013.10.bb @@ -0,0 +1,26 @@ +DESCRIPTION = "U-boot bootloader mxsboot tool" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://Licenses/README;md5=6bc50ecab884fce80cd3ef3da8852b08" +SECTION = "bootloader" +PROVIDES = "u-boot-mxsboot" + +PV = "v2013.10" + +SRCREV = "fb18fa95a14ae875ef0a5421cd9fecc00c7c3a4c" +SRC_URI = "git://github.com/Freescale/u-boot-imx.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" diff --git a/recipes-bsp/u-boot/u-boot-fslc_2013.07.bb b/recipes-bsp/u-boot/u-boot-fslc_2013.07.bb deleted file mode 100644 index 5845569..0000000 --- a/recipes-bsp/u-boot/u-boot-fslc_2013.07.bb +++ /dev/null @@ -1,18 +0,0 @@ -require recipes-bsp/u-boot/u-boot.inc - -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb" -COMPATIBLE_MACHINE = "(mxs|mx3|mx5|mx6|vf60)" - -DEPENDS_mxs += "elftosb-native" - -PROVIDES += "u-boot" - -PV = "v2013.07" - -SRCREV = "cba5372e531ab9c94f76464dd58511d1c1edc2ee" -SRC_URI = "git://github.com/Freescale/u-boot-imx.git" - -S = "${WORKDIR}/git" - -PACKAGE_ARCH = "${MACHINE_ARCH}" diff --git a/recipes-bsp/u-boot/u-boot-fslc_2013.10.bb b/recipes-bsp/u-boot/u-boot-fslc_2013.10.bb new file mode 100644 index 0000000..b1fe2e1 --- /dev/null +++ b/recipes-bsp/u-boot/u-boot-fslc_2013.10.bb @@ -0,0 +1,18 @@ +require recipes-bsp/u-boot/u-boot.inc + +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://Licenses/README;md5=6bc50ecab884fce80cd3ef3da8852b08" +COMPATIBLE_MACHINE = "(mxs|mx3|mx5|mx6|vf60)" + +DEPENDS_mxs += "elftosb-native" + +PROVIDES += "u-boot" + +PV = "v2013.10" + +SRCREV = "fb18fa95a14ae875ef0a5421cd9fecc00c7c3a4c" +SRC_URI = "git://github.com/Freescale/u-boot-imx.git" + +S = "${WORKDIR}/git" + +PACKAGE_ARCH = "${MACHINE_ARCH}" diff --git a/recipes-bsp/u-boot/u-boot-mxsboot_2013.07.bb b/recipes-bsp/u-boot/u-boot-mxsboot_2013.07.bb deleted file mode 100644 index 7605ce2..0000000 --- a/recipes-bsp/u-boot/u-boot-mxsboot_2013.07.bb +++ /dev/null @@ -1,25 +0,0 @@ -DESCRIPTION = "U-boot bootloader mxsboot tool" -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb" -SECTION = "bootloader" - -PV = "v2013.07" - -SRCREV = "cba5372e531ab9c94f76464dd58511d1c1edc2ee" -SRC_URI = "git://github.com/Freescale/u-boot-imx.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