diff options
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-rt_3.8.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.8.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.8.bb new file mode 100644 index 0000000000..97178c7c04 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.8.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | require recipes-kernel/linux/linux-yocto.inc | ||
2 | |||
3 | KBRANCH = "standard/preempt-rt/base" | ||
4 | KBRANCH_qemuppc = "standard/preempt-rt/qemuppc" | ||
5 | |||
6 | LINUX_VERSION ?= "3.8.4" | ||
7 | LINUX_KERNEL_TYPE = "preempt-rt" | ||
8 | |||
9 | KMETA = "meta" | ||
10 | |||
11 | SRCREV_machine ?= "e9b9f72029522ef142ab181e9f7f3ae71535181a" | ||
12 | SRCREV_machine_qemuppc ?= "7443096f0bdc6522053decd10430fc96a0ef9b94" | ||
13 | SRCREV_meta ?= "2a6d36e75ca0a121570a389d7bab76ec240cbfda" | ||
14 | |||
15 | PR = "${INC_PR}.0" | ||
16 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
17 | |||
18 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.8.git;protocol=git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta" | ||
19 | |||
20 | # Omit broken machines from COMPATIBLE_MACHINE | ||
21 | # qemuppc hangs at boot | ||
22 | # qemumips panics at boot | ||
23 | COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)" | ||
24 | |||
25 | # Functionality flags | ||
26 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc" | ||
27 | KERNEL_FEATURES_append_qemux86=" ${KERNEL_EXTRA_FEATURES} cfg/sound.scc cfg/paravirt_kvm.scc" | ||
28 | KERNEL_FEATURES_append_qemux86-64=" ${KERNEL_EXTRA_FEATURES} cfg/sound.scc" | ||
29 | KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}" | ||