mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 11:13:04 +01:00
Updating the 3.2 recipe SRCREVs to pickup the following meta change:
[
meta: Add igb.scc to Romley
Romley machine has 82580 Giga bit Ethernet Controller.
Add the relavent Nic driver to it.
(From OE-Core rev: d7c567816bf828da34fb9e315d4d76c4181337e9)
Signed-off-by: Kishore Bodke <kishore.k.bodke@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 = "standard/preempt-rt/base"
|
|
KBRANCH_qemuppc = "standard/preempt-rt/qemu-ppc32"
|
|
|
|
LINUX_VERSION ?= "3.2.11"
|
|
LINUX_KERNEL_TYPE = "preempt-rt"
|
|
|
|
SRCREV_machine ?= "32ecb53e9ff759bbd297a10712b62a6575daaf86"
|
|
SRCREV_machine_qemuppc ?= "0d5625bb868cc2471d5dd49eb7abe7eb5fe1044b"
|
|
SRCREV_meta ?= "135c75bf9615334b5b8bb9108d612fe7dfbdb901"
|
|
|
|
PR = "r1"
|
|
PV = "${LINUX_VERSION}+git${SRCPV}"
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.2.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
|