summaryrefslogtreecommitdiffstats
path: root/meta/recipes-rt/rt-tests/rt-tests.inc
diff options
context:
space:
mode:
authorJosh Cartwright <joshc@ni.com>2015-09-22 07:24:38 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-11-16 11:39:32 +0000
commitc0fe43cdbef0e6edc1fea777b389b95275bbcc02 (patch)
tree3c9c371e13c777e9c1b6b12b913cd4199ac88205 /meta/recipes-rt/rt-tests/rt-tests.inc
parentcf972f9abf78111c2a7414356dac4d2a657b751f (diff)
downloadpoky-c0fe43cdbef0e6edc1fea777b389b95275bbcc02.tar.gz
rt-tests: bump to v0.94
All of the rt-tests patches that OE has been carrying have been upstreamed or superceded by changes in the v0.94 release. Adjust SRC_URI to point to canonical upstream git repo, instead of a development tree. There was a notable change upstream that required slight reworking of the recipe. rt-tests now joins other kbuild-inspired projects by making use of a CROSS_COMPILE flag to indicate the compiler prefix. Previously TOOLCHAIN_OPTIONS were conveyed via $CC directly, however, this does not work with CROSS_COMPILE. Workaround this by both specifying CROSS_COMPILE, and feeding the rt-tests build system the proper $(HOST_CC_ARCH)$(TOOLCHAIN_OPTIONS) via $CFLAGS. (From OE-Core rev: 37bd229626a259d2509a9cdd2d6a2d934121e9ca) Signed-off-by: Josh Cartwright <joshc@ni.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-rt/rt-tests/rt-tests.inc')
-rw-r--r--meta/recipes-rt/rt-tests/rt-tests.inc14
1 files changed, 4 insertions, 10 deletions
diff --git a/meta/recipes-rt/rt-tests/rt-tests.inc b/meta/recipes-rt/rt-tests/rt-tests.inc
index 871db136c2..4e099dffa2 100644
--- a/meta/recipes-rt/rt-tests/rt-tests.inc
+++ b/meta/recipes-rt/rt-tests/rt-tests.inc
@@ -1,14 +1,8 @@
1# Version v0.92 1# Version v0.94
2PV = "0.92" 2PV = "0.94"
3SRCREV = "5f9f1e3fe327440a9d405f4af8feb16ff7a909eb" 3SRCREV = "a8fd81efa718ec449d90cba8f41123ed521bd12b"
4 4
5SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/clrkwllms/rt-tests.git \ 5SRC_URI = "git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git"
6 file://0001-rt-tests-Allow-for-user-specified-PYLIB.patch \
7 file://0002-rt-tests-Break-out-install_hwlatdetect.patch \
8 file://hackbench-fix-error-check.patch \
9 file://Makefile-fix-gzip-command.patch \
10 file://fix-re-install-failure.patch \
11"
12 6
13S = "${WORKDIR}/git" 7S = "${WORKDIR}/git"
14 8