mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
Updating the meta SRCREV to import a series of changes to synchronize live booting between multiple targets: d05450e meta/fri2: enable booting from iso 3da7d2a meta/fishriver: enable booting from iso 52e1c49 meta/emenlow: enable booting from iso 87918ae meta/crownbay: enable booting from iso (From OE-Core rev: 7100c50c8697a3eec446b9189bf49ecbea9b7264) 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>
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.4"
|
|
LINUX_KERNEL_TYPE = "preempt-rt"
|
|
|
|
SRCREV_machine ?= "0936e13cc65d816f1759e2322c5e3fc82a5037f3"
|
|
SRCREV_machine_qemuppc ?= "0936e13cc65d816f1759e2322c5e3fc82a5037f3"
|
|
SRCREV_meta ?= "d05450e4aef02c1b7137398ab3a9f8f96da74f52"
|
|
|
|
PR = "r1"
|
|
PV = "${LINUX_VERSION}+git${SRCPV}"
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.0.git;protocol=git;nocheckout=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
|