diff options
Diffstat (limited to 'meta/recipes-rt')
| -rw-r--r-- | meta/recipes-rt/images/core-image-rt-sdk.bb | 15 | ||||
| -rw-r--r-- | meta/recipes-rt/images/core-image-rt.bb | 12 | ||||
| -rw-r--r-- | meta/recipes-rt/rt-tests/rt-tests_0.73.bb | 22 |
3 files changed, 49 insertions, 0 deletions
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 | |||
| 5 | DESCRIPTION = "Real-Time Linux Image with SDK support" | ||
| 6 | DEPENDS = "linux-yocto-rt" | ||
| 7 | |||
| 8 | require recipes-core/images/core-image-minimal.bb | ||
| 9 | |||
| 10 | IMAGE_FEATURES += "dev-pkgs tools-sdk" | ||
| 11 | EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks" | ||
| 12 | |||
| 13 | IMAGE_INSTALL += "rt-tests" | ||
| 14 | |||
| 15 | LICENSE = "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 | |||
| 5 | DESCRIPTION = "Real-Time Linux Image" | ||
| 6 | DEPENDS = "linux-yocto-rt" | ||
| 7 | |||
| 8 | require recipes-core/images/core-image-minimal.bb | ||
| 9 | |||
| 10 | IMAGE_INSTALL += "rt-tests" | ||
| 11 | |||
| 12 | LICENSE = "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 @@ | |||
| 1 | DESCRIPTION = "Real-Time preemption testcases" | ||
| 2 | HOMEPAGE = "https://rt.wiki.kernel.org/index.php/Cyclictest" | ||
| 3 | SECTION = "tests" | ||
| 4 | DEPENDS = "linux-libc-headers eglibc" | ||
| 5 | LICENSE = "GPLv2 & GPLv2+" | ||
| 6 | LIC_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" | ||
| 9 | SRCREV = v0.73 | ||
| 10 | PV = "git${SRCPV}" | ||
| 11 | PR = "r0" | ||
| 12 | |||
| 13 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/clrkwllms/rt-tests.git;protocol=git" | ||
| 14 | |||
| 15 | S = "${WORKDIR}/git" | ||
| 16 | |||
| 17 | CFLAGS += "-I${S}/src/include -D_GNU_SOURCE -Wall -Wno-nonnull" | ||
| 18 | |||
| 19 | do_install() { | ||
| 20 | oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} \ | ||
| 21 | INCLUDEDIR=${includedir} | ||
| 22 | } | ||
