mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 01:06:37 +01:00
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>
27 lines
653 B
BlitzBasic
27 lines
653 B
BlitzBasic
require recipes-kernel/linux/linux-yocto.inc
|
|
|
|
# We need lzma (as CONFIG_KERNEL_LZMA=y)
|
|
DEPENDS += "xz-native"
|
|
|
|
KBRANCH_DEFAULT = "standard/tiny"
|
|
KBRANCH = "${KBRANCH_DEFAULT}"
|
|
LINUX_KERNEL_TYPE = "tiny"
|
|
KCONFIG_MODE = "--allnoconfig"
|
|
|
|
LINUX_VERSION ?= "3.2.18"
|
|
|
|
KMETA = "meta"
|
|
|
|
SRCREV_machine ?= "da6291c46f37e2fb799d964c807d8d57ea89c375"
|
|
SRCREV_meta ?= "486f7aec824b4127e91ef53228823e996b3696f0"
|
|
|
|
PR = "${INC_PR}.0"
|
|
PV = "${LINUX_VERSION}+git${SRCPV}"
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.2;protocol=git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta"
|
|
|
|
COMPATIBLE_MACHINE = "(qemux86)"
|
|
|
|
# Functionality flags
|
|
KERNEL_FEATURES = ""
|