summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2012-09-04 08:40:37 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-04 14:46:18 +0100
commitc24befffaf90b883b5844fc6a7084337af694f3f (patch)
treec35db878b411600eb519287e01848f3ffa3d9668 /meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb
parent80048ceebfa7dfb018bfaf2775ff994f8e5d820d (diff)
downloadpoky-c24befffaf90b883b5844fc6a7084337af694f3f.tar.gz
linux-yocto/3.2/3.4: arm: Fix linking errors with binutils 2.23
Updating the 3.2/3.4 linux-yocto SRCREVs to pickup the following fix: arm: Fix linking errors with binutils 2.23 We end up with linking errors on arm using latest binutils because we are linking asm generated objects which use -march=all generating different attributes into object and use some c objects e.g. misc.o which use different march therefore generating a different set of attributes into object. When linking is done the ld complains since it finds incompatible attributes and ends up with errors like error: DIV usage mismatch between arch/arm/boot/compressed/head.o and output error: DIV usage mismatch between arch/arm/boot/compressed/misc.o and output error: DIV usage mismatch between arch/arm/boot/compressed/decompress.o and output error: DIV usage mismatch between arch/arm/boot/compressed/lib1funcs.o and output This patch fixes it by providing correct march to assembly routines which than matches with output of ld. Signed-off-by: Khem Raj <raj.khem@gmail.com> (From OE-Core rev: e67ffb708522a622d149641ea09b249259ed3fb4) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb')
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb
index 38a4e6cd1a..2bd7eee2b6 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.2.bb
@@ -12,7 +12,7 @@ LINUX_VERSION ?= "3.2.18"
12 12
13KMETA = "meta" 13KMETA = "meta"
14 14
15SRCREV_machine ?= "2f986ab91c08c16f8d201518b11be0e367eb0e14" 15SRCREV_machine ?= "da6291c46f37e2fb799d964c807d8d57ea89c375"
16SRCREV_meta ?= "486f7aec824b4127e91ef53228823e996b3696f0" 16SRCREV_meta ?= "486f7aec824b4127e91ef53228823e996b3696f0"
17 17
18PR = "${INC_PR}.0" 18PR = "${INC_PR}.0"