Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
From f9a55a87af57780ea8940561d22cd6a90f461416 Mon Sep 17 00:00:00 2001
|
||||
From: Alexey Brodkin <abrodkin@synopsys.com>
|
||||
Date: Mon, 10 Nov 2014 11:44:55 +0300
|
||||
Subject: [PATCH] Fix various minor issues with rt-tests build system
|
||||
|
||||
The issues fixed are :
|
||||
|
||||
* Remove the automatic NUMA detection from the host
|
||||
architecture. This is broken when doing cross-compilation. One can
|
||||
still set NUMA=1 if NUMA support is desired.
|
||||
|
||||
* Provide a HASPYTHON variable to tell whether the target system has
|
||||
Python or not. Otherwise, the build system simply tests whether
|
||||
Python is available on the host. The PYLIB variable is also changed
|
||||
so that it can be overriden from the environment, in order to
|
||||
provide the correct Python module location for the target.
|
||||
|
||||
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
|
||||
Cc: Peter Korsgaard <peter@korsgaard.com>
|
||||
---
|
||||
Makefile | 10 +++-------
|
||||
1 file changed, 3 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index 318a5c6..645d138 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -14,17 +14,13 @@ bindir ?= $(prefix)/bin
|
||||
mandir ?= $(prefix)/share/man
|
||||
srcdir ?= $(prefix)/src
|
||||
|
||||
-machinetype = $(shell $(CC) -dumpmachine | \
|
||||
- sed -e 's/-.*//' -e 's/i.86/i386/' -e 's/mips.*/mips/' -e 's/ppc.*/powerpc/')
|
||||
-ifneq ($(filter x86_64 i386 ia64 mips powerpc,$(machinetype)),)
|
||||
-NUMA := 1
|
||||
-endif
|
||||
-
|
||||
CFLAGS ?= -Wall -Wno-nonnull
|
||||
CPPFLAGS += -D_GNU_SOURCE -Isrc/include
|
||||
LDFLAGS ?=
|
||||
|
||||
-PYLIB := $(shell python -c 'import distutils.sysconfig; print distutils.sysconfig.get_python_lib()')
|
||||
+ifeq ($(HASPYTHON),1)
|
||||
+PYLIB ?= $(shell python -c 'import distutils.sysconfig; print distutils.sysconfig.get_python_lib()')
|
||||
+endif
|
||||
|
||||
ifndef DEBUG
|
||||
CFLAGS += -O2
|
||||
--
|
||||
1.9.3
|
||||
|
||||
109
deprecated/firmware/buildroot/package/rt-tests/02-uclibc.patch
Normal file
109
deprecated/firmware/buildroot/package/rt-tests/02-uclibc.patch
Normal file
@@ -0,0 +1,109 @@
|
||||
From 713224456f4a3242496af803413f670433f27c74 Mon Sep 17 00:00:00 2001
|
||||
From: Alexey Brodkin <abrodkin@synopsys.com>
|
||||
Date: Mon, 10 Nov 2014 11:55:27 +0300
|
||||
Subject: [PATCH] [PATCH] fix build with uClibc
|
||||
|
||||
Fix two build issues with (modern) uClibc:
|
||||
- uClibc has clock_nanosleep() if built with UCLIBC_HAS_ADVANCED_REALTIME,
|
||||
conflicting with emulation function
|
||||
- uClibc doesn't provide utmpx.h if not built with UCLIBC_HAS_UTMPX, which
|
||||
is included in several files (but not needed).
|
||||
|
||||
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
|
||||
---
|
||||
src/backfire/sendme.c | 1 -
|
||||
src/cyclictest/cyclictest.c | 3 ++-
|
||||
src/pmqtest/pmqtest.c | 1 -
|
||||
src/ptsematest/ptsematest.c | 1 -
|
||||
src/sigwaittest/sigwaittest.c | 2 --
|
||||
src/svsematest/svsematest.c | 1 -
|
||||
6 files changed, 2 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/src/backfire/sendme.c b/src/backfire/sendme.c
|
||||
index 8c169dd..b959951 100644
|
||||
--- a/src/backfire/sendme.c
|
||||
+++ b/src/backfire/sendme.c
|
||||
@@ -32,7 +32,6 @@
|
||||
#include "rt-utils.h"
|
||||
#include "rt-get_cpu.h"
|
||||
|
||||
-#include <utmpx.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/time.h>
|
||||
diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
|
||||
index 4547831..343e421 100644
|
||||
--- a/src/cyclictest/cyclictest.c
|
||||
+++ b/src/cyclictest/cyclictest.c
|
||||
@@ -25,6 +25,7 @@
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <errno.h>
|
||||
+#include <features.h>
|
||||
#include <limits.h>
|
||||
#include <linux/unistd.h>
|
||||
|
||||
@@ -56,7 +57,7 @@
|
||||
#define gettid() syscall(__NR_gettid)
|
||||
#define sigev_notify_thread_id _sigev_un._tid
|
||||
|
||||
-#ifdef __UCLIBC__
|
||||
+#if defined(__UCLIBC__) && !defined(__UCLIBC_HAS_ADVANCED_REALTIME__)
|
||||
#define MAKE_PROCESS_CPUCLOCK(pid, clock) \
|
||||
((~(clockid_t) (pid) << 3) | (clockid_t) (clock))
|
||||
#define CPUCLOCK_SCHED 2
|
||||
diff --git a/src/pmqtest/pmqtest.c b/src/pmqtest/pmqtest.c
|
||||
index 336a8eb..2e34afe 100644
|
||||
--- a/src/pmqtest/pmqtest.c
|
||||
+++ b/src/pmqtest/pmqtest.c
|
||||
@@ -33,7 +33,6 @@
|
||||
#include <sys/time.h>
|
||||
#include <sys/mman.h>
|
||||
#include <linux/unistd.h>
|
||||
-#include <utmpx.h>
|
||||
#include <mqueue.h>
|
||||
#include "rt-utils.h"
|
||||
#include "rt-get_cpu.h"
|
||||
diff --git a/src/ptsematest/ptsematest.c b/src/ptsematest/ptsematest.c
|
||||
index 7558a41..5358a65 100644
|
||||
--- a/src/ptsematest/ptsematest.c
|
||||
+++ b/src/ptsematest/ptsematest.c
|
||||
@@ -33,7 +33,6 @@
|
||||
#include <sys/time.h>
|
||||
#include <sys/mman.h>
|
||||
#include <linux/unistd.h>
|
||||
-#include <utmpx.h>
|
||||
#include "rt-utils.h"
|
||||
#include "rt-get_cpu.h"
|
||||
#include "error.h"
|
||||
diff --git a/src/sigwaittest/sigwaittest.c b/src/sigwaittest/sigwaittest.c
|
||||
index 428f5ce..85c32a2 100644
|
||||
--- a/src/sigwaittest/sigwaittest.c
|
||||
+++ b/src/sigwaittest/sigwaittest.c
|
||||
@@ -31,11 +31,9 @@
|
||||
#include <signal.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
-#include <utmpx.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
||||
#include <linux/unistd.h>
|
||||
-#include <utmpx.h>
|
||||
#include "rt-utils.h"
|
||||
#include "rt-get_cpu.h"
|
||||
|
||||
diff --git a/src/svsematest/svsematest.c b/src/svsematest/svsematest.c
|
||||
index c1128cc..5d02550 100644
|
||||
--- a/src/svsematest/svsematest.c
|
||||
+++ b/src/svsematest/svsematest.c
|
||||
@@ -31,7 +31,6 @@
|
||||
#include <sched.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
-#include <utmpx.h>
|
||||
|
||||
#include <linux/unistd.h>
|
||||
|
||||
--
|
||||
1.9.3
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
From c6920f97be02ca3fba9320b043acd578ce4c62d8 Mon Sep 17 00:00:00 2001
|
||||
From: Alexey Brodkin <abrodkin@synopsys.com>
|
||||
Date: Mon, 10 Nov 2014 10:00:13 +0300
|
||||
Subject: [PATCH] Makefile: allow building selected tests with non-NPTL
|
||||
toolchain
|
||||
|
||||
Some architectures are still stuck with non-NPTL toolchains.
|
||||
These are for example ARC, Blackfin, Xtensa etc.
|
||||
|
||||
Still rt-tests are very good benchmarks and it would be good to enable use of
|
||||
at least selected (those that will be built) tests on those architectures.
|
||||
|
||||
This change makes it possible to only build subset of tests that don't require
|
||||
NPTL calls.
|
||||
|
||||
By default behavior is not modified - all tests are built, but if one wants
|
||||
to build with non-NPTL toolchain just add "HAVE_NPTL=no" in command line
|
||||
or modify "HAVE_NPTL" variable right in Makefile and execute "make".
|
||||
|
||||
This patch was submitted upstream:
|
||||
https://www.mail-archive.com/linux-kernel@vger.kernel.org/msg762958.html
|
||||
so as soon as it is accepted with the next version bump this patch should be
|
||||
removed.
|
||||
|
||||
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
|
||||
Cc: Vineet Gupta <vgupta@synopsys.com>
|
||||
Cc: Clark Williams <clark.williams@gmail.com>
|
||||
---
|
||||
Makefile | 11 ++++++++---
|
||||
1 file changed, 8 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index 318a5c6..675edf7 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -1,8 +1,13 @@
|
||||
VERSION_STRING = 0.89
|
||||
|
||||
-sources = cyclictest.c signaltest.c pi_stress.c rt-migrate-test.c \
|
||||
- ptsematest.c sigwaittest.c svsematest.c pmqtest.c sendme.c \
|
||||
- pip_stress.c hackbench.c
|
||||
+HAVE_NPTL ?= yes
|
||||
+
|
||||
+ifeq ($(HAVE_NPTL),yes)
|
||||
+sources = cyclictest.c pi_stress.c pip_stress.c pmqtest.c rt-migrate-test.c
|
||||
+endif
|
||||
+
|
||||
+sources += signaltest.c ptsematest.c sigwaittest.c svsematest.c sendme.c \
|
||||
+ hackbench.c
|
||||
|
||||
TARGETS = $(sources:.c=)
|
||||
|
||||
--
|
||||
1.9.3
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
From e464368807211978fe2dfccf081fa8dc7a35b71b Mon Sep 17 00:00:00 2001
|
||||
From: Baruch Siach <baruch@tkos.co.il>
|
||||
Date: Fri, 23 Jan 2015 07:52:21 +0200
|
||||
Subject: [PATCH] Makefile: fix tests dependencies
|
||||
|
||||
librttest is listed in $(LIBS) so all tests must depend on librttest.a.
|
||||
Fixes build failures like:
|
||||
|
||||
.../armv7-ctng-linux-gnueabihf-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g2 -o hackbench hackbench.o -lrt -lpthread -lrttest -L.
|
||||
.../armv7-ctng-linux-gnueabihf/bin/ld: cannot find -lrttest
|
||||
collect2: error: ld returned 1 exit status
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Makefile | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index a3879cea8164..b9a1fed1b920 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -69,14 +69,14 @@ cyclictest: cyclictest.o librttest.a
|
||||
signaltest: signaltest.o librttest.a
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|
||||
|
||||
-pi_stress: pi_stress.o
|
||||
+pi_stress: pi_stress.o librttest.a
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|
||||
|
||||
hwlatdetect: src/hwlatdetect/hwlatdetect.py
|
||||
chmod +x src/hwlatdetect/hwlatdetect.py
|
||||
ln -s src/hwlatdetect/hwlatdetect.py hwlatdetect
|
||||
|
||||
-rt-migrate-test: rt-migrate-test.o
|
||||
+rt-migrate-test: rt-migrate-test.o librttest.a
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|
||||
|
||||
ptsematest: ptsematest.o librttest.a
|
||||
@@ -97,7 +97,7 @@ sendme: sendme.o librttest.a
|
||||
pip_stress: pip_stress.o librttest.a
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|
||||
|
||||
-hackbench: hackbench.o
|
||||
+hackbench: hackbench.o librttest.a
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|
||||
|
||||
librttest.a: rt-utils.o error.o rt-get_cpu.o
|
||||
--
|
||||
2.1.4
|
||||
|
||||
32
deprecated/firmware/buildroot/package/rt-tests/Config.in
Normal file
32
deprecated/firmware/buildroot/package/rt-tests/Config.in
Normal file
@@ -0,0 +1,32 @@
|
||||
config BR2_PACKAGE_RT_TESTS
|
||||
bool "rt-tests"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on !BR2_STATIC_LIBS # dlopen
|
||||
help
|
||||
Set of utilities for testing the real-time behaviour of a
|
||||
Linux system.
|
||||
|
||||
All tools are simple C programs with no dependencies, except
|
||||
the hwlatdetect utility, which is a Python script and
|
||||
therefore requires the Python interpreter. It will only be
|
||||
installed if a Python interpreter has been selected in the
|
||||
Buildroot configuration.
|
||||
|
||||
Note that this package requires a toolchain built with the
|
||||
NPTL implementation of the pthread API (this is always the
|
||||
case with glibc/eglibc toolchains, but may not necessarily
|
||||
be the case with uClibc toolchains, since the thread
|
||||
implementation is configurable).
|
||||
|
||||
http://rt.wiki.kernel.org
|
||||
|
||||
|
||||
comment "rt-tests may not work on MIPS with an external uClibc toolchain"
|
||||
depends on BR2_PACKAGE_RT_TESTS
|
||||
depends on BR2_TOOLCHAIN_EXTERNAL_UCLIBC
|
||||
depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
|
||||
|
||||
comment "rt-tests needs a toolchain w/ threads, dynamic library"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
depends on BR2_USE_MMU
|
||||
39
deprecated/firmware/buildroot/package/rt-tests/rt-tests.mk
Normal file
39
deprecated/firmware/buildroot/package/rt-tests/rt-tests.mk
Normal file
@@ -0,0 +1,39 @@
|
||||
################################################################################
|
||||
#
|
||||
# rt-tests
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RT_TESTS_SITE = git://git.kernel.org/pub/scm/linux/kernel/git/clrkwllms/rt-tests.git
|
||||
RT_TESTS_VERSION = v0.89
|
||||
RT_TESTS_LICENSE = GPLv2+
|
||||
RT_TESTS_LICENSE_FILES = COPYING
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
||||
RT_TESTS_DEPENDENCIES = python
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS_NPTL),y)
|
||||
RT_TESTS_HAVE_NPTL=yes
|
||||
else
|
||||
RT_TESTS_HAVE_NPTL=no
|
||||
endif
|
||||
|
||||
define RT_TESTS_BUILD_CMDS
|
||||
$(MAKE) -C $(@D) \
|
||||
CC="$(TARGET_CC)" \
|
||||
HAVE_NPTL=$(RT_TESTS_HAVE_NPTL) \
|
||||
CFLAGS="$(TARGET_CFLAGS)" \
|
||||
prefix=/usr
|
||||
endef
|
||||
|
||||
define RT_TESTS_INSTALL_TARGET_CMDS
|
||||
$(MAKE) -C $(@D) \
|
||||
HAVE_NPTL=$(RT_TESTS_HAVE_NPTL) \
|
||||
DESTDIR="$(TARGET_DIR)" \
|
||||
prefix=/usr \
|
||||
$(if $(BR2_PACKAGE_PYTHON),HASPYTHON=1 PYLIB=/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages/) \
|
||||
install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user