mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
Updating the 3.0 kernel SRCREVs to integrate the v3.0.32 -stable release. (From OE-Core rev: 6d97c94d25713b47417e184308ab43947c7f243d) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
38 lines
1.2 KiB
BlitzBasic
38 lines
1.2 KiB
BlitzBasic
inherit kernel
|
|
require recipes-kernel/linux/linux-yocto.inc
|
|
|
|
KMACHINE = "common-pc"
|
|
KMACHINE_qemux86 = "common-pc"
|
|
KMACHINE_qemux86-64 = "common-pc-64"
|
|
KMACHINE_qemuarm = "arm-versatile-926ejs"
|
|
KMACHINE_qemuppc = "qemu-ppc32"
|
|
KMACHINE_qemumips = "mti-malta32-be"
|
|
|
|
KBRANCH = "yocto/standard/preempt-rt/base"
|
|
KBRANCH_qemuppc = "yocto/standard/preempt-rt/qemu-ppc32"
|
|
|
|
LINUX_VERSION ?= "3.0.32"
|
|
LINUX_KERNEL_TYPE = "preempt-rt"
|
|
|
|
SRCREV_machine ?= "e67428d9966eecec4c081993dc64ceb5c0e64643"
|
|
SRCREV_machine_qemuppc ?= "dcca458cb92cc287f70e4062f02460f36a881b16"
|
|
SRCREV_meta ?= "34e0d2b4b4e9778b31f9ea99ca43f0dc71a7ee23"
|
|
|
|
PR = "r2"
|
|
PV = "${LINUX_VERSION}+git${SRCPV}"
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.0.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 = "features/netfilter"
|
|
KERNEL_FEATURES_append = " features/taskstats"
|
|
KERNEL_FEATURES_append_qemux86 = " cfg/sound"
|
|
KERNEL_FEATURES_append_qemux86-64 = " cfg/sound"
|
|
|
|
require recipes-kernel/linux/linux-tools.inc
|