summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2012-10-02 14:14:53 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2012-10-19 15:48:45 -0300
commit20fc5b168e20d5fc399a3eab436522c885e76bb5 (patch)
treeaf9416457240b7de996e1c80d99256887eb04c65
parent3a0bd426fa4aa9d98b7faaa328c4527b7812b360 (diff)
downloadmeta-fsl-arm-20fc5b168e20d5fc399a3eab436522c885e76bb5.tar.gz
u-boot: Update to 2012.10 version
Update the version to a 2012.10 based branch. This also remove the hack to avoid use of gold for linking as the fix has been merged in upstream tree. Change-Id: Iab30dd07d6fb4a519b46b248d1de2df8623e31e6 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-bsp/u-boot/u-boot_2012.10.bb (renamed from recipes-bsp/u-boot/u-boot_2012.07.bb)11
1 files changed, 2 insertions, 9 deletions
diff --git a/recipes-bsp/u-boot/u-boot_2012.07.bb b/recipes-bsp/u-boot/u-boot_2012.10.bb
index 4237f00..6bcd2a7 100644
--- a/recipes-bsp/u-boot/u-boot_2012.07.bb
+++ b/recipes-bsp/u-boot/u-boot_2012.10.bb
@@ -6,18 +6,11 @@ COMPATIBLE_MACHINE = "(imx28evk|mx3|mx5|mx6)"
6 6
7DEPENDS_mxs += "elftosb-native" 7DEPENDS_mxs += "elftosb-native"
8 8
9PV = "v2012.07" 9PV = "v2012.10"
10PR = "r1"
11 10
12SRCREV = "8b53a1ae421246f1001a2a38121e6c9365843f0a" 11SRCREV = "18cfaf0a6d31339106c32fdcdef2408829817143"
13SRC_URI = "git://github.com/Freescale/u-boot-imx.git" 12SRC_URI = "git://github.com/Freescale/u-boot-imx.git"
14 13
15S = "${WORKDIR}/git" 14S = "${WORKDIR}/git"
16 15
17PACKAGE_ARCH = "${MACHINE_ARCH}" 16PACKAGE_ARCH = "${MACHINE_ARCH}"
18
19do_compile_prepend() {
20 if [ "${@base_contains('DISTRO_FEATURES', 'ld-is-gold', 'ld-is-gold', '', d)}" = "ld-is-gold" ] ; then
21 sed -i 's/$(CROSS_COMPILE)ld/$(CROSS_COMPILE)ld.bfd/g' config.mk
22 fi
23}