mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 09:16:36 +01:00
The fetcher now confirms that a given SRCREV exists on the branch specified in the SRC_URI. The linux-yocto recipes used to do this themselves, but that functionality was removed to allow builds when only the SRCREV was set and to be similar to other recipes. Now that the fetcher checks this value, and other recipes must also have SRCREV + branch information, this extra information can be put back into the recipes. (From OE-Core rev: 4a562fd2614bb6ccce1222d47b9268d6980cf315) 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>
39 lines
1.5 KiB
BlitzBasic
39 lines
1.5 KiB
BlitzBasic
require recipes-kernel/linux/linux-yocto.inc
|
|
|
|
KBRANCH_DEFAULT = "standard/base"
|
|
KBRANCH = "${KBRANCH_DEFAULT}"
|
|
|
|
# board specific branches
|
|
KBRANCH_qemuarm = "standard/arm-versatile-926ejs"
|
|
KBRANCH_qemumips = "standard/mti-malta32"
|
|
KBRANCH_qemuppc = "standard/qemuppc"
|
|
KBRANCH_qemux86 = "standard/common-pc/base"
|
|
KBRANCH_qemux86-64 = "standard/common-pc-64/base"
|
|
KBRANCH_qemumips64 = "standard/mti-malta64"
|
|
|
|
SRCREV_machine_qemuarm ?= "38fe75106c5faa3ea49d0a285769de3d08478f90"
|
|
SRCREV_machine_qemumips ?= "67c8918ce3cfd66f19f23b46381993ff488b3fe0"
|
|
SRCREV_machine_qemuppc ?= "0e81c96b36e05746ae978a830fe3dbdac8a51e58"
|
|
SRCREV_machine_qemux86 ?= "7f4d818b0450a5dc79f81b51dc7d13d0682b1287"
|
|
SRCREV_machine_qemux86-64 ?= "7f4d818b0450a5dc79f81b51dc7d13d0682b1287"
|
|
SRCREV_machine ?= "7f4d818b0450a5dc79f81b51dc7d13d0682b1287"
|
|
SRCREV_meta ?= "f36797c2df3fbe9491c8ac5977fb691f4a75e9b7"
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
|
|
|
|
LINUX_VERSION ?= "3.4.69"
|
|
|
|
PR = "${INC_PR}.5"
|
|
PV = "${LINUX_VERSION}+git${SRCPV}"
|
|
|
|
KMETA = "meta"
|
|
|
|
COMPATIBLE_MACHINE = "qemuarm|qemux86|qemuppc|qemumips|qemux86-64"
|
|
|
|
# Functionality flags
|
|
KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc"
|
|
KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}"
|
|
KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc"
|
|
KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc"
|
|
KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}"
|