mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 13:13:02 +01:00
The meta data branch for the kernel can be varied by changing the KMETA variable, but that change wasn't reflected in the SRC_URI, which means that the fetcher won't check for changes on that branch and is a potential source of errors. Making the meta branch specification KMETA vs meta solves the problem. (From OE-Core rev: 5bfc678aeb65b50710384e93b64add3a62146908) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
1.2 KiB
BlitzBasic
33 lines
1.2 KiB
BlitzBasic
require recipes-kernel/linux/linux-yocto.inc
|
|
|
|
KBRANCH_DEFAULT = "standard/base"
|
|
KBRANCH = "${KBRANCH_DEFAULT}"
|
|
|
|
SRCREV_machine_qemuarm ?= "092d66e326abfda80c50dcf1869417d7420847f1"
|
|
SRCREV_machine_qemumips ?= "b258437665477f44a868c38c6c9cc5199db58cd8"
|
|
SRCREV_machine_qemuppc ?= "67a370223d695ec08b6e5a38860fa1fe5d0d9f1e"
|
|
SRCREV_machine_qemux86 ?= "b13bef6377719a488293af196236cc290566fad3"
|
|
SRCREV_machine_qemux86-64 ?= "b13bef6377719a488293af196236cc290566fad3"
|
|
SRCREV_machine ?= "b13bef6377719a488293af196236cc290566fad3"
|
|
SRCREV_meta ?= "6737e890fff2a423fbb022ab1f7f82ef187fd8b1"
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;nocheckout=1;branch=${KBRANCH},${KMETA};name=machine,meta"
|
|
|
|
LINUX_VERSION ?= "3.4.20"
|
|
|
|
PR = "${INC_PR}.3"
|
|
PV = "${LINUX_VERSION}+git${SRCPV}"
|
|
|
|
KMETA = "meta"
|
|
|
|
COMPATIBLE_MACHINE = "qemuarm|qemux86|qemuppc|qemumips|qemux86-64"
|
|
|
|
# Functionality flags
|
|
KERNEL_REVISION_CHECKING=""
|
|
KERNEL_FEATURES_append = " features/netfilter"
|
|
KERNEL_FEATURES_append_qemux86=" cfg/sound"
|
|
KERNEL_FEATURES_append_qemux86-64=" cfg/sound"
|
|
KERNEL_FEATURES_append_qemux86=" cfg/paravirt_kvm"
|
|
KERNEL_FEATURES_append_qemux86-64=" cfg/paravirt_kvm"
|
|
KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32", "" ,d)}"
|