From c24befffaf90b883b5844fc6a7084337af694f3f Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Tue, 4 Sep 2012 08:40:37 -0400 Subject: 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 (From OE-Core rev: e67ffb708522a622d149641ea09b249259ed3fb4) Signed-off-by: Bruce Ashfield Signed-off-by: Richard Purdie --- meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb') diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb index 322ee5cb27..9cc7e99659 100644 --- a/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb +++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb @@ -8,8 +8,8 @@ LINUX_KERNEL_TYPE = "preempt-rt" KMETA = "meta" -SRCREV_machine ?= "e8b22d297b61fb6f107f769042d47235c571da74" -SRCREV_machine_qemuppc ?= "9cdefb26d9a263430f98d642aff6551ae925fce8" +SRCREV_machine ?= "eb9c0669c66041eeae72b853011ec31ad81cc35d" +SRCREV_machine_qemuppc ?= "76add8441a2b6ed26bcc9268819782b2eec99001" SRCREV_meta ?= "463299bc2e533e1bd38b0053ae7b210980f269c3" PR = "${INC_PR}.0" -- cgit v1.2.3-54-g00ecf