[oe-commits] Cliff Brake : rt-tests: add git recipe

git version control git at git.openembedded.org
Mon Sep 14 15:37:51 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: e00a889a30ca4756e4964261fa8ce36317efe481
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=e00a889a30ca4756e4964261fa8ce36317efe481

Author: Cliff Brake <cbrake at bec-systems.com>
Date:   Mon Sep 14 11:37:17 2009 -0400

rt-tests: add git recipe

---

 recipes/rt-tests/rt-tests_git.bb |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/recipes/rt-tests/rt-tests_git.bb b/recipes/rt-tests/rt-tests_git.bb
new file mode 100644
index 0000000..fbb0791
--- /dev/null
+++ b/recipes/rt-tests/rt-tests_git.bb
@@ -0,0 +1,26 @@
+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 = "r0"
+
+SRCREV = "42ab9e7cd259fae674dc2b2aa2962caaf8f09409"
+
+PV = "0.51+${PR}+gitr${SRCREV}"
+
+SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/tglx/rt-tests;protocol=git"
+
+S = "${WORKDIR}/git"
+
+# Limit to cyclictest only for non-real-time kernels.
+# EXTRA_OEMAKE = "cyclictest"
+
+TARGET_CC_ARCH += "${LDFLAGS}"
+
+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
+}





More information about the Openembedded-commits mailing list