mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 09:46:38 +01:00
korg commit 42dcd1f4e [perf tools: Fix parallel build] fixes parallel
build issues that are being seen in the autobuilder.
We also have a fix from Tom:
[
perf annotate: replace 'expand' with equivalent sed expression
We don't have 'expand' in our userspace so we need to accomplish the
same thing using 'sed', which we do have.
]
So we apply it to all BSP branches and kernel types.
(From OE-Core rev: f06e7d38db35c56c71a42264361ec45fb3777a14)
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
1.0 KiB
BlitzBasic
31 lines
1.0 KiB
BlitzBasic
require recipes-kernel/linux/linux-yocto.inc
|
|
|
|
KBRANCH = "standard/preempt-rt/base"
|
|
KBRANCH_qemuppc = "standard/preempt-rt/qemuppc"
|
|
|
|
LINUX_VERSION ?= "3.4.11"
|
|
LINUX_KERNEL_TYPE = "preempt-rt"
|
|
|
|
KMETA = "meta"
|
|
|
|
SRCREV_machine ?= "5705c8037d2c47938034ead87c70ae3ebef552f7"
|
|
SRCREV_machine_qemuppc ?= "c8b651aab5d2d5c0839cdedc0c0ec5dc09cf47c0"
|
|
SRCREV_meta ?= "a201268353c030d9fafe00f2041976f7437d9386"
|
|
|
|
PR = "${INC_PR}.0"
|
|
PV = "${LINUX_VERSION}+git${SRCPV}"
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta"
|
|
|
|
# Omit broken machines from COMPATIBLE_MACHINE
|
|
# qemuppc hangs at boot
|
|
# qemumips panics at boot
|
|
COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)"
|
|
|
|
# Functionality flags
|
|
KERNEL_FEATURES_append = " features/netfilter"
|
|
KERNEL_FEATURES_append = " features/taskstats"
|
|
KERNEL_FEATURES_append_qemux86 = " cfg/sound"
|
|
KERNEL_FEATURES_append_qemux86-64 = " cfg/sound"
|
|
KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32", "" ,d)}"
|