Signed-off-by: Raymond Danks <[email protected]> --- recipes/rt-tests/rt-tests_0.73.bb | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) create mode 100644 recipes/rt-tests/rt-tests_0.73.bb
diff --git a/recipes/rt-tests/rt-tests_0.73.bb b/recipes/rt-tests/rt-tests_0.73.bb new file mode 100644 index 0000000..bebf89e --- /dev/null +++ b/recipes/rt-tests/rt-tests_0.73.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "Real-time tests, such as cyclictest, for real-time linux PREEMPT RT kernels" +HOMEPAGE = "http://rt.wiki.kernel.org/index.php/Cyclictest" +LICENSE = "GPL" +PR = "r1" + +SRC_URI = "http://www.kernel.org/pub/linux/kernel/people/tglx/rt-tests/rt-tests-${PV}.tar.bz2" + +S = "${WORKDIR}/rt-tests" + +CFLAGS += "-D_GNU_SOURCE -Wall -Wno-nonnull -Isrc/include" +TARGET_CC_ARCH += "${LDFLAGS}" + +# Limit to cyclictest only for non-real-time kernels. +# EXTRA_OEMAKE = "cyclictest" + +do_install() { + install -d ${D}${bindir} + # any file that is executable by user and/or group + for binary in `find . -perm /u+x,g+x -type f` + do + install -m 0755 $binary ${D}${bindir} + done +} + +SRC_URI[md5sum] = "98da46135f0a91c96cb7e5b27c7e3bb6" +SRC_URI[sha256sum] = "f8d396ecd6aa5526c49919acbac0ea4936f27f2410ca806570d8c92c1067c29d" + -- 1.7.0.4 _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
