summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-rt_2.6.34.bb44
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb46
-rw-r--r--meta/recipes-rt/images/core-image-rt-sdk.bb15
-rw-r--r--meta/recipes-rt/images/core-image-rt.bb12
-rw-r--r--meta/recipes-rt/rt-tests/rt-tests_0.73.bb22
5 files changed, 139 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_2.6.34.bb b/meta/recipes-kernel/linux/linux-yocto-rt_2.6.34.bb
new file mode 100644
index 0000000000..0ca53ae436
--- /dev/null
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_2.6.34.bb
@@ -0,0 +1,44 @@
1inherit kernel
2require recipes-kernel/linux/linux-yocto.inc
3
4KMACHINE = "common-pc"
5KMACHINE_qemux86 = "common_pc"
6KMACHINE_qemux86-64 = "common_pc_64"
7
8LINUX_VERSION ?= "2.6.34"
9LINUX_KERNEL_TYPE = "preempt_rt"
10LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE_EXTENSION}"
11
12KMETA = wrs_meta
13KBRANCH = ${KMACHINE}-${LINUX_KERNEL_TYPE}
14
15SRCREV_machine_qemux86 = "439602eb6acd53d9beb8493710310214fc7bd749"
16SRCREV_machine_qemux86-64 = "3c84c45ad3c3592f9c7ff4076de9bee417cd322e"
17SRCREV_machine = "439602eb6acd53d9beb8493710310214fc7bd749"
18SRCREV_meta = "e1f85a470934a0cf6abde5d95533e74501822c6b"
19
20PR = "r2"
21PV = "${LINUX_VERSION}+git${SRCPV}"
22SRCREV_FORMAT = "meta_machine"
23
24COMPATIBLE_MACHINE = "(qemux86|qemux86-64)"
25
26# this performs a fixup on the SRCREV for new/undefined BSPs
27python __anonymous () {
28 import bb, re, string
29
30 kerntype = string.replace(bb.data.expand("${LINUX_KERNEL_TYPE}", d), "_", "-")
31 bb.data.setVar("LINUX_KERNEL_TYPE_EXTENSION", kerntype, d)
32}
33
34SRC_URI = "git://git.yoctoproject.org/linux-yocto-2.6.34.git;protocol=git;nocheckout=1;branch=${KBRANCH},wrs_meta;name=machine,meta"
35
36# Functionality flags
37KERNEL_REVISION_CHECKING ?= "t"
38KERNEL_FEATURES=features/netfilter
39
40# extra tasks
41addtask kernel_link_vmlinux after do_compile before do_install
42addtask validate_branches before do_patch after do_kernel_checkout
43
44require recipes-kernel/linux/linux-tools.inc
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
new file mode 100644
index 0000000000..c8a175dad8
--- /dev/null
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
@@ -0,0 +1,46 @@
1inherit kernel
2require recipes-kernel/linux/linux-yocto.inc
3
4KMACHINE = "common-pc"
5KMACHINE_qemux86 = "common-pc"
6KMACHINE_qemux86-64 = "common-pc-64"
7KMACHINE_qemuarm = "arm-versatile-926ejs"
8KMACHINE_qemuppc = "qemu-ppc32"
9KMACHINE_qemumips = "mti-malta32-be"
10
11KBRANCH = "yocto/standard/preempt-rt/base"
12KMETA = meta
13
14LINUX_VERSION ?= "3.0"
15LINUX_KERNEL_TYPE = "preempt-rt"
16LINUX_VERSION_EXTENSION ?= "-yocto-${LINUX_KERNEL_TYPE}"
17
18SRCREV_machine = "7e1e5b6c8a13c615feb0d7b6d37988a094aae98f"
19SRCREV_meta = "7782fc673afd6a1c742409896ae787560d96fce8"
20
21PR = "r0"
22PV = "${LINUX_VERSION}+git${SRCPV}"
23SRCREV_FORMAT = "meta_machine"
24
25SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.0.git;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
26
27# Omit broken machines from COMPATIBLE_MACHINE
28# qemuppc hangs at boot
29# qemumips panics at boot
30COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm)"
31
32# Functionality flags
33KERNEL_REVISION_CHECKING ?= "t"
34KERNEL_FEATURES=features/netfilter
35KERNEL_FEATURES_append=" features/taskstats"
36KERNEL_FEATURES_append_qemux86=" cfg/sound"
37KERNEL_FEATURES_append_qemux86-64=" cfg/sound"
38
39YOCTO_KERNEL_META_DATA=t
40
41# extra tasks
42addtask kernel_link_vmlinux after do_compile before do_install
43addtask validate_branches before do_patch after do_kernel_checkout
44addtask kernel_configcheck after do_configure before do_compile
45
46require recipes-kernel/linux/linux-tools.inc
diff --git a/meta/recipes-rt/images/core-image-rt-sdk.bb b/meta/recipes-rt/images/core-image-rt-sdk.bb
new file mode 100644
index 0000000000..6e983433aa
--- /dev/null
+++ b/meta/recipes-rt/images/core-image-rt-sdk.bb
@@ -0,0 +1,15 @@
1#
2# Copyright (C) 2011 Intel Corporation.
3#
4
5DESCRIPTION = "Real-Time Linux Image with SDK support"
6DEPENDS = "linux-yocto-rt"
7
8require recipes-core/images/core-image-minimal.bb
9
10IMAGE_FEATURES += "dev-pkgs tools-sdk"
11EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks"
12
13IMAGE_INSTALL += "rt-tests"
14
15LICENSE = "MIT"
diff --git a/meta/recipes-rt/images/core-image-rt.bb b/meta/recipes-rt/images/core-image-rt.bb
new file mode 100644
index 0000000000..e11f159f7a
--- /dev/null
+++ b/meta/recipes-rt/images/core-image-rt.bb
@@ -0,0 +1,12 @@
1#
2# Copyright (C) 2010 Intel Corporation.
3#
4
5DESCRIPTION = "Real-Time Linux Image"
6DEPENDS = "linux-yocto-rt"
7
8require recipes-core/images/core-image-minimal.bb
9
10IMAGE_INSTALL += "rt-tests"
11
12LICENSE = "MIT"
diff --git a/meta/recipes-rt/rt-tests/rt-tests_0.73.bb b/meta/recipes-rt/rt-tests/rt-tests_0.73.bb
new file mode 100644
index 0000000000..6334bcdeef
--- /dev/null
+++ b/meta/recipes-rt/rt-tests/rt-tests_0.73.bb
@@ -0,0 +1,22 @@
1DESCRIPTION = "Real-Time preemption testcases"
2HOMEPAGE = "https://rt.wiki.kernel.org/index.php/Cyclictest"
3SECTION = "tests"
4DEPENDS = "linux-libc-headers eglibc"
5LICENSE = "GPLv2 & GPLv2+"
6LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
7 file://src/cyclictest/cyclictest.c;beginline=7;endline=9;md5=ce162fe491d19d2ec67dff6dbc938d50 \
8 file://src/pi_tests/pi_stress.c;beginline=6;endline=19;md5=bd426a634a43ec612e9fbf125dfcc949"
9SRCREV = v0.73
10PV = "git${SRCPV}"
11PR = "r0"
12
13SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/clrkwllms/rt-tests.git;protocol=git"
14
15S = "${WORKDIR}/git"
16
17CFLAGS += "-I${S}/src/include -D_GNU_SOURCE -Wall -Wno-nonnull"
18
19do_install() {
20 oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} \
21 INCLUDEDIR=${includedir}
22}