mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 12:13:02 +01:00
This is an update of the linux-yocto 3.0 and 3.2 SRCREVs to bring in the following updates: - v3.0.23 stable update - v3.2.9 stable update - 3.0/3.2: fri2 updates (pch + configuration changes) from Darren Hart - 3.0: pvr merge from Kishore Bodke - linux-yocto/rt: update to 3.0.23-rt38 - linux-yocto/rt: update to 3.2.9-rt15 These have been built for all qemu targets, and built for the appropriate hardware platforms. (From OE-Core rev: a9e7131b85e1787e6f76c64d77b2ac6684c8a9c9) 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.23"
|
|
LINUX_KERNEL_TYPE = "preempt-rt"
|
|
|
|
SRCREV_machine ?= "49d1d57f98a9ac378a1f12f5d23301c11495a5df"
|
|
SRCREV_machine_qemuppc ?= "7b3162e269c49c6a4653d43292c62c188add8d67"
|
|
SRCREV_meta ?= "e559129b4a6f39f68b75141096b2d516cf7a7f35"
|
|
|
|
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
|