diff options
author | Maxin B. John <maxin.john@enea.com> | 2015-06-16 23:25:07 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 11:47:21 +0100 |
commit | 74603c4ab47ae5729b05ac538c4f05e37af463bc (patch) | |
tree | eb442e9dc62d963a180ccf03fd384b4bbafe8c39 | |
parent | b8d8d1dcd69aa0c2ff86369a65379f5cf2373346 (diff) | |
download | poky-74603c4ab47ae5729b05ac538c4f05e37af463bc.tar.gz |
rt-tests: bump version to v0.92
Version upgrade to v0.92
Rebased below listed patch to newer source code:
added-missing-dependencies.patch
(From OE-Core rev: 9c0db9cedc05e80f6ddef29ec3eaeaa1063e51c7)
Signed-off-by: Maxin B. John <maxin.john@enea.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-rt/rt-tests/files/added-missing-dependencies.patch | 36 | ||||
-rw-r--r-- | meta/recipes-rt/rt-tests/hwlatdetect_0.92.bb (renamed from meta/recipes-rt/rt-tests/hwlatdetect_0.91.bb) | 0 | ||||
-rw-r--r-- | meta/recipes-rt/rt-tests/rt-tests.inc | 6 | ||||
-rw-r--r-- | meta/recipes-rt/rt-tests/rt-tests_0.92.bb (renamed from meta/recipes-rt/rt-tests/rt-tests_0.91.bb) | 0 |
4 files changed, 17 insertions, 25 deletions
diff --git a/meta/recipes-rt/rt-tests/files/added-missing-dependencies.patch b/meta/recipes-rt/rt-tests/files/added-missing-dependencies.patch index e4202823e3..0bf768eb9d 100644 --- a/meta/recipes-rt/rt-tests/files/added-missing-dependencies.patch +++ b/meta/recipes-rt/rt-tests/files/added-missing-dependencies.patch | |||
@@ -1,50 +1,42 @@ | |||
1 | From 82d28701486ba5a699544a168448bf93b1ccd7b1 Mon Sep 17 00:00:00 2001 | 1 | From 3f948f22d9106a2b957d1d430b16a7c51ccfc067 Mon Sep 17 00:00:00 2001 |
2 | From: Jackie Huang <jackie.huang@windriver.com> | 2 | From: "Maxin B. John" <maxin.john@enea.com> |
3 | Date: Thu, 6 Dec 2012 11:26:14 +0800 | 3 | Date: Tue, 16 Jun 2015 22:53:23 +0200 |
4 | Subject: [PATCH] Added missing dependencies | 4 | Subject: [PATCH] Added missing dependencies |
5 | 5 | ||
6 | Upstream-Status: Submitted [linux-rt-users] | 6 | Upstream-Status: Submitted [linux-rt-users] |
7 | 7 | ||
8 | The following targets missed dependency on librttest.a: | 8 | The following targets missed dependency on librttest.a: |
9 | pi_stress | ||
10 | rt-migrate-test | 9 | rt-migrate-test |
11 | hackbench | 10 | hackbench |
12 | 11 | ||
13 | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> | 12 | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> |
13 | Signed-off-by: Maxin B. John <maxin.john@enea.com> | ||
14 | --- | 14 | --- |
15 | Makefile | 6 +++--- | 15 | Makefile | 4 ++-- |
16 | 1 file changed, 3 insertions(+), 3 deletions(-) | 16 | 1 file changed, 2 insertions(+), 2 deletions(-) |
17 | 17 | ||
18 | diff --git a/Makefile b/Makefile | 18 | diff --git a/Makefile b/Makefile |
19 | index fd3cdb3..60707a7 100644 | 19 | index a48e759..7a3f192 100644 |
20 | --- a/Makefile | 20 | --- a/Makefile |
21 | +++ b/Makefile | 21 | +++ b/Makefile |
22 | @@ -68,14 +68,14 @@ cyclictest: cyclictest.o librttest.a | 22 | @@ -85,7 +85,7 @@ hwlatdetect: src/hwlatdetect/hwlatdetect.py |
23 | signaltest: signaltest.o librttest.a | ||
24 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) | ||
25 | |||
26 | -pi_stress: pi_stress.o | ||
27 | +pi_stress: pi_stress.o librttest.a | ||
28 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) | ||
29 | |||
30 | hwlatdetect: src/hwlatdetect/hwlatdetect.py | ||
31 | chmod +x src/hwlatdetect/hwlatdetect.py | 23 | chmod +x src/hwlatdetect/hwlatdetect.py |
32 | ln -s src/hwlatdetect/hwlatdetect.py hwlatdetect | 24 | ln -s src/hwlatdetect/hwlatdetect.py hwlatdetect |
33 | 25 | ||
34 | -rt-migrate-test: rt-migrate-test.o | 26 | -rt-migrate-test: rt-migrate-test.o |
35 | +rt-migrate-test: rt-migrate-test.o librttest.a | 27 | +rt-migrate-test: rt-migrate-test.o librttest.a |
36 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) | 28 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS) |
37 | 29 | ||
38 | ptsematest: ptsematest.o librttest.a | 30 | ptsematest: ptsematest.o librttest.a |
39 | @@ -96,7 +96,7 @@ sendme: sendme.o librttest.a | 31 | @@ -106,7 +106,7 @@ sendme: sendme.o librttest.a |
40 | pip_stress: pip_stress.o librttest.a | 32 | pip_stress: pip_stress.o librttest.a |
41 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) | 33 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS) $(RTTESTLIB) |
42 | 34 | ||
43 | -hackbench: hackbench.o | 35 | -hackbench: hackbench.o |
44 | +hackbench: hackbench.o librttest.a | 36 | +hackbench: hackbench.o librttest.a |
45 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) | 37 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS) |
46 | 38 | ||
47 | librttest.a: rt-utils.o error.o rt-get_cpu.o | 39 | librttest.a: rt-utils.o error.o rt-get_cpu.o rt-sched.o |
48 | -- | 40 | -- |
49 | 1.7.9.5 | 41 | 1.9.1 |
50 | 42 | ||
diff --git a/meta/recipes-rt/rt-tests/hwlatdetect_0.91.bb b/meta/recipes-rt/rt-tests/hwlatdetect_0.92.bb index 8319eb987a..8319eb987a 100644 --- a/meta/recipes-rt/rt-tests/hwlatdetect_0.91.bb +++ b/meta/recipes-rt/rt-tests/hwlatdetect_0.92.bb | |||
diff --git a/meta/recipes-rt/rt-tests/rt-tests.inc b/meta/recipes-rt/rt-tests/rt-tests.inc index 68a972ab4e..e63182a711 100644 --- a/meta/recipes-rt/rt-tests/rt-tests.inc +++ b/meta/recipes-rt/rt-tests/rt-tests.inc | |||
@@ -1,6 +1,6 @@ | |||
1 | # Version v0.91 | 1 | # Version v0.92 |
2 | PV = "0.91" | 2 | PV = "0.92" |
3 | SRCREV = "3fed00ff8d2c0cdbc5ba078cbd60ce3cfcee615f" | 3 | SRCREV = "5f9f1e3fe327440a9d405f4af8feb16ff7a909eb" |
4 | 4 | ||
5 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/clrkwllms/rt-tests.git \ | 5 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/clrkwllms/rt-tests.git \ |
6 | file://0001-rt-tests-Allow-for-user-specified-PYLIB.patch \ | 6 | file://0001-rt-tests-Allow-for-user-specified-PYLIB.patch \ |
diff --git a/meta/recipes-rt/rt-tests/rt-tests_0.91.bb b/meta/recipes-rt/rt-tests/rt-tests_0.92.bb index fbe2f669e8..fbe2f669e8 100644 --- a/meta/recipes-rt/rt-tests/rt-tests_0.91.bb +++ b/meta/recipes-rt/rt-tests/rt-tests_0.92.bb | |||