summaryrefslogtreecommitdiffstats
path: root/patches
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-01-27 09:36:15 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-01-27 11:23:43 +0100
commitd6229b4aeb1ba46d6eb7fe88307957cf29eb545f (patch)
treef47ee11e13162a47c8b9080ee6a3080b0f090b12 /patches
parent7de0b73215dccad472fdafa16abcd6b01e417599 (diff)
downloadptxdist-d6229b4aeb1ba46d6eb7fe88307957cf29eb545f.tar.gz
ptxdist-d6229b4aeb1ba46d6eb7fe88307957cf29eb545f.tar.xz
ltp: remove old broken rules
These packages have been marked as broken for a long time and nobody cared. Just remove them. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'patches')
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-add-autoreconf.diff58
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-arch-specific-tests.diff125
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-crosscompile.diff24
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-disable-epoll_create2.diff25
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-dont-install-objectfiles.diff60
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-duplicate-tst-total.diff38
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-forward-error-messages-to-stderr.diff37
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-librttest-rdtsc-cross.diff21
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-pan-dont-run-infinite.diff45
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-reduce_pans_noise.diff34
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-remove-group-user-check.diff27
-rw-r--r--patches/ltp-full-20090131/ltp-full-20090131-undefined-ar.diff31
-rw-r--r--patches/ltp-full-20090131/series12
13 files changed, 0 insertions, 537 deletions
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-add-autoreconf.diff b/patches/ltp-full-20090131/ltp-full-20090131-add-autoreconf.diff
deleted file mode 100644
index 1cd9dbabc..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-add-autoreconf.diff
+++ /dev/null
@@ -1,58 +0,0 @@
-From: Robert Schwebel <r.schwebel@pengutronix.de>
-Subject: [patch] add autogen.sh script
-
-Getting the autotool steps right is sometimes a little bit difficult, so
-add an autogen.sh script.
-
-Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
-
----
- autogen.sh | 41 +++++++++++++++++++++++++++++++++++++++++
- 1 file changed, 41 insertions(+)
-
-Index: ltp-full-20090131/autogen.sh
-===================================================================
---- /dev/null
-+++ ltp-full-20090131/autogen.sh
-@@ -0,0 +1,41 @@
-+#!/bin/bash
-+
-+#
-+# usage:
-+#
-+# banner <target name>
-+#
-+banner() {
-+
-+ echo
-+ TG=`echo $1 | sed -e "s,/.*/,,g"`
-+ LINE=`echo $TG |sed -e "s/./-/g"`
-+ echo $LINE
-+ echo $TG
-+ echo $LINE
-+ echo
-+}
-+
-+
-+ACLOCAL=${ACLOCAL:=aclocal}
-+AUTOHEADER=${AUTOHEADER:=autoheader}
-+AUTOMAKE=${AUTOMAKE:=automake}
-+AUTOCONF=${AUTOCONF:=autoconf}
-+
-+banner "running aclocal"
-+$ACLOCAL -I m4
-+[ $? != 0 ] && exit
-+
-+banner "running autoheader"
-+$AUTOHEADER
-+[ $? != 0 ] && exit
-+
-+banner "running automake"
-+$AUTOMAKE --gnu --add-missing -Wall
-+[ $? != 0 ] && exit
-+
-+banner "running autoconf"
-+$AUTOCONF -Wall
-+[ $? != 0 ] && exit
-+
-+banner "Finished"
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-arch-specific-tests.diff b/patches/ltp-full-20090131/ltp-full-20090131-arch-specific-tests.diff
deleted file mode 100644
index a3733d92a..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-arch-specific-tests.diff
+++ /dev/null
@@ -1,125 +0,0 @@
-Subject: [patch] add infrastructure to make tests arch dependend
-From: Robert Schwebel <r.schwebel@pengutronix.de>
-
-Propagate host_cpu to Makefiles, in order to make some tests arch
-dependend.
-
-FIXME: Patch not finished yet...
-
-Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
-
----
- config.mk.in | 3 ++
- configure.ac | 6 ++++
- testcases/kernel/sched/hyperthreading/Makefile | 3 +-
- testcases/kernel/sched/hyperthreading/ht_affinity/Makefile | 2 -
- testcases/kernel/sched/hyperthreading/ht_enabled/Makefile | 2 -
- testcases/kernel/sched/hyperthreading/ht_interrupt/Makefile | 2 -
- testcases/realtime/Makefile.in | 16 ++++++++++++
- 7 files changed, 30 insertions(+), 4 deletions(-)
-
-Index: ltp-full-20090131/configure.ac
-===================================================================
---- ltp-full-20090131.orig/configure.ac
-+++ ltp-full-20090131/configure.ac
-@@ -7,6 +7,8 @@ AC_CONFIG_FILES([config.mk m4/Makefile])
- AC_CANONICAL_BUILD
- AC_CANONICAL_HOST
-
-+AC_SUBST(host_cpu)
-+
- AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL(AR, ar, :)])
-
- AC_PROG_CC
-@@ -23,4 +25,8 @@ LTP_CHECK_SYSCALL_EVENTFD
- LTP_CHECK_SYSCALL_MODIFY_LDT
- LTP_CHECK_SYSCALL_SIGNALFD
-
-+AC_CONFIG_FILES([
-+ testcases/realtime/Makefile
-+])
-+
- AC_OUTPUT
-Index: ltp-full-20090131/testcases/realtime/Makefile.in
-===================================================================
---- /dev/null
-+++ ltp-full-20090131/testcases/realtime/Makefile.in
-@@ -0,0 +1,16 @@
-+host_cpu := @host_cpu@
-+
-+srcdir := .
-+include $(srcdir)/config.mk
-+
-+SUBDIRS = lib func perf stress
-+
-+all:
-+ @set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i; done
-+
-+install:
-+ @set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i install; done
-+
-+clean:
-+ @set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i clean ; done
-+ @rm .config
-Index: ltp-full-20090131/config.mk.in
-===================================================================
---- ltp-full-20090131.orig/config.mk.in
-+++ ltp-full-20090131/config.mk.in
-@@ -7,3 +7,6 @@ CFLAGS = @CFLAGS@
- LDFLAGS = @LDFLAGS@
-
- AIO_LIBS = @AIO_LIBS@
-+
-+TARGET_ARCHITECTURE = @host_cpu@
-+
-Index: ltp-full-20090131/testcases/kernel/sched/hyperthreading/Makefile
-===================================================================
---- ltp-full-20090131.orig/testcases/kernel/sched/hyperthreading/Makefile
-+++ ltp-full-20090131/testcases/kernel/sched/hyperthreading/Makefile
-@@ -1,5 +1,6 @@
-+include ../../../../config.mk
-
--OSV := $(shell uname -m|grep i[3-6]86)
-+OSV := $(shell echo $(TARGET_ARCHITECTURE) | grep i[3-6]86)
- ifeq (,$(OSV))
- else
- export CFLAGS+= -DARCH_i386
-Index: ltp-full-20090131/testcases/kernel/sched/hyperthreading/ht_affinity/Makefile
-===================================================================
---- ltp-full-20090131.orig/testcases/kernel/sched/hyperthreading/ht_affinity/Makefile
-+++ ltp-full-20090131/testcases/kernel/sched/hyperthreading/ht_affinity/Makefile
-@@ -9,7 +9,7 @@ all: $(TARGETS)
- #ht_affinity: HTaffinity.o HTutils.o
- # gcc -o ht_affinity HTaffinity.o HTutils.o $(CFLAGS) $(LOADLIBES)
- ht_affinity:
-- gcc -o ht_affinity HTaffinity.c HTutils.c $(CFLAGS) $(LOADLIBES)
-+ $(CC) -o ht_affinity HTaffinity.c HTutils.c $(CFLAGS) $(LOADLIBES)
-
- install:
- @set -e; for i in $(TARGETS) ; do ln -f $$i ../../../../bin/$$i ; done
-Index: ltp-full-20090131/testcases/kernel/sched/hyperthreading/ht_enabled/Makefile
-===================================================================
---- ltp-full-20090131.orig/testcases/kernel/sched/hyperthreading/ht_enabled/Makefile
-+++ ltp-full-20090131/testcases/kernel/sched/hyperthreading/ht_enabled/Makefile
-@@ -7,7 +7,7 @@ TARGETS := ht_enabled
- all: $(TARGETS)
-
- ht_enabled:
-- gcc -o ht_enabled HTenabled.c HTutils.c $(CFLAGS) $(LOADLIBES)
-+ $(CC) -o ht_enabled HTenabled.c HTutils.c $(CFLAGS) $(LOADLIBES)
-
- install:
- @set -e; for i in $(TARGETS) ; do ln -f $$i ../../../../bin/$$i ; done
-Index: ltp-full-20090131/testcases/kernel/sched/hyperthreading/ht_interrupt/Makefile
-===================================================================
---- ltp-full-20090131.orig/testcases/kernel/sched/hyperthreading/ht_interrupt/Makefile
-+++ ltp-full-20090131/testcases/kernel/sched/hyperthreading/ht_interrupt/Makefile
-@@ -7,7 +7,7 @@ TARGETS = ht_interrupt
- all: $(TARGETS)
-
- ht_interrupt:
-- gcc -o ht_interrupt HTinterrupt.c HTutils.c $(CFLAGS) $(LOADLIBES)
-+ $(CC) -o ht_interrupt HTinterrupt.c HTutils.c $(CFLAGS) $(LOADLIBES)
-
- install:
- @set -e; for i in $(TARGETS) ; do ln -f $$i ../../../../bin/$$i ; done
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-crosscompile.diff b/patches/ltp-full-20090131/ltp-full-20090131-crosscompile.diff
deleted file mode 100644
index 74d28cdeb..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-crosscompile.diff
+++ /dev/null
@@ -1,24 +0,0 @@
-From: Robert Schwebel <r.schwebel@pengutronix.de>
-Subject: [patch] add canonical build
-
-For cross compilation we usually need to compute the canonical host and
-build variables.
-
-Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
-
----
- configure.ac | 1 +
- 1 file changed, 1 insertion(+)
-
-Index: ltp-full-20090131/configure.ac
-===================================================================
---- ltp-full-20090131.orig/configure.ac
-+++ ltp-full-20090131/configure.ac
-@@ -4,6 +4,7 @@ AM_INIT_AUTOMAKE([1.10])
- AC_CONFIG_HEADERS([include/config.h])
- AC_CONFIG_FILES([config.mk m4/Makefile])
-
-+AC_CANONICAL_BUILD
- AC_CANONICAL_HOST
-
- AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL(AR, ar, :)])
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-disable-epoll_create2.diff b/patches/ltp-full-20090131/ltp-full-20090131-disable-epoll_create2.diff
deleted file mode 100644
index 7b6d9cbbe..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-disable-epoll_create2.diff
+++ /dev/null
@@ -1,25 +0,0 @@
-Subject: [patch] Disable epoll_create2 until configure can handle it
-From: Juergen Beiesert <j.beisert@pengutronix.de>
-
-Disable epoll_create2 until configure can test for target's capability
-
-FIXME: Patch not finished yet...
-
-Signed-off-by: <j.beisert@pengutronix.de>
-
----
- testcases/kernel/syscalls/Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-Index: ltp-full-20090131/testcases/kernel/syscalls/Makefile
-===================================================================
---- ltp-full-20090131.orig/testcases/kernel/syscalls/Makefile
-+++ ltp-full-20090131/testcases/kernel/syscalls/Makefile
-@@ -25,7 +25,7 @@ EXCLUDE_DIR=epoll
- #
- # Commented this out since there are directories here we don't want built by default
- #
--SUBDIR = `ls */Makefile | sed "s/Makefile//g"`
-+SUBDIR = `ls */Makefile | sed "s/Makefile//g | grep -vE "^epoll_create2"`
- UCLINUX_SUBDIR = `ls */Makefile | sed "s/Makefile//g" | grep -vE "^fork|epoll|capget|capset|chmod|chown|llseek|nftw|clone|profil|getcontext"`
-
- all:
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-dont-install-objectfiles.diff b/patches/ltp-full-20090131/ltp-full-20090131-dont-install-objectfiles.diff
deleted file mode 100644
index 6f6f9e6d2..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-dont-install-objectfiles.diff
+++ /dev/null
@@ -1,60 +0,0 @@
-From: Robert Schwebel <r.schwebel@pengutronix.de>
-Subject: [patch] don't install object files
-
-Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
-
----
- testcases/commands/ade/ld/Makefile | 1 -
- testcases/commands/ade/ldd/Makefile | 1 -
- testcases/commands/ade/nm/Makefile | 1 -
- testcases/commands/ade/objdump/Makefile | 1 -
- 4 files changed, 4 deletions(-)
-
-Index: ltp-full-20090131/testcases/commands/ade/ld/Makefile
-===================================================================
---- ltp-full-20090131.orig/testcases/commands/ade/ld/Makefile
-+++ ltp-full-20090131/testcases/commands/ade/ld/Makefile
-@@ -8,7 +8,6 @@ all: $(OBJECTS)
-
- install:
- ln -f ld01 ../../../bin
-- ln -f *.o ../../../bin
-
- clean:
- rm -f main.o d1.o f1.o rd1.o rf1.o ldmain.o lola a.out
-Index: ltp-full-20090131/testcases/commands/ade/ldd/Makefile
-===================================================================
---- ltp-full-20090131.orig/testcases/commands/ade/ldd/Makefile
-+++ ltp-full-20090131/testcases/commands/ade/ldd/Makefile
-@@ -8,7 +8,6 @@ all: $(TARGETS)
-
- install:
- ln -f ldd01 ../../../bin
-- ln -f *.o ../../../bin
-
- clean:
- rm -f $(TARGETS)
-Index: ltp-full-20090131/testcases/commands/ade/nm/Makefile
-===================================================================
---- ltp-full-20090131.orig/testcases/commands/ade/nm/Makefile
-+++ ltp-full-20090131/testcases/commands/ade/nm/Makefile
-@@ -9,7 +9,6 @@ all: $(OBJECTS)
- install:
- ln -f nm01 ../../../bin
- ln -f nmfile*.c ../../../bin
-- ln -f *.o ../../../bin
-
- clean:
- rm -f nmfile*.o
-Index: ltp-full-20090131/testcases/commands/ade/objdump/Makefile
-===================================================================
---- ltp-full-20090131.orig/testcases/commands/ade/objdump/Makefile
-+++ ltp-full-20090131/testcases/commands/ade/objdump/Makefile
-@@ -8,7 +8,6 @@ all: $(TESTS)
-
- install:
- ln -f objdump01 ../../../bin
-- ln -f test_arch.o ../../../bin
- ln -f test ../../../bin
- ln -f test_D ../../../bin
-
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-duplicate-tst-total.diff b/patches/ltp-full-20090131/ltp-full-20090131-duplicate-tst-total.diff
deleted file mode 100644
index 0d3e424ab..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-duplicate-tst-total.diff
+++ /dev/null
@@ -1,38 +0,0 @@
-Subject: [patch] fix duplicate TST_TOTAL for non-x86
-From: Robert Schwebel <r.schwebel@pengutronix.de>
-
-When building for ARM I get this:
-
-tcore.c:212: error: redefinition of 'TST_TOTAL'
-tcore.c:30: error: previous definition of 'TST_TOTAL' was here
-
-Move definition to x86 specific part, as we also have one in the non-x86
-part.
-
-Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
-
----
- testcases/misc/tcore_patch_test_suites/tcore.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-Index: ltp-full-20090131/testcases/misc/tcore_patch_test_suites/tcore.c
-===================================================================
---- ltp-full-20090131.orig/testcases/misc/tcore_patch_test_suites/tcore.c
-+++ ltp-full-20090131/testcases/misc/tcore_patch_test_suites/tcore.c
-@@ -27,7 +27,6 @@ extern int Tst_count; /*
- extern char *TESTDIR; /* temporary dir created by tst_tmpdir() */
- /* Global Variables */
- char *TCID = "tcore"; /* test program identifier. */
--int TST_TOTAL = 1; /* total number of tests in this file. */
-
- #if defined __i386__ || defined(__x86_64__)
- #include <stdio.h>
-@@ -38,6 +37,8 @@ int TST_TOTAL = 1; /*
-
- #define BUFFER_SIZE 16
-
-+int TST_TOTAL = 1; /* total number of tests in this file. */
-+
- /* Circular buffer of integers. */
-
- struct prodcons
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-forward-error-messages-to-stderr.diff b/patches/ltp-full-20090131/ltp-full-20090131-forward-error-messages-to-stderr.diff
deleted file mode 100644
index 6acd54121..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-forward-error-messages-to-stderr.diff
+++ /dev/null
@@ -1,37 +0,0 @@
-Subject: Forward error messages to stderr
-From: Juergen Beisert <jbe@pengutronix.de>
-
-Unsure if I understand the code in the right manner, but
-other error messages are also forwarded to stderr instead of stdout.
-
-Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
-
----
- pan/pan.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-Index: ltp-full-20090131/pan/pan.c
-===================================================================
---- ltp-full-20090131.orig/pan/pan.c
-+++ ltp-full-20090131/pan/pan.c
-@@ -237,9 +237,9 @@ main(int argc, char **argv)
- break;
- case 't': /* run_time to run */
- ret = sscanf(optarg, "%d%c", &run_time, &modifier);
-- if (ret == 0) { printf("Need proper time input: ####x where"
-+ if (ret == 0) { fprintf(stderr, "Need proper time input: ####x where"
- "x is one of s,m,h,d\n"); break; }
-- else if (ret == 1) { printf("Only got a time value of %d "
-+ else if (ret == 1) { fprintf(stderr, "Only got a time value of %d "
- "modifiers need to come immediately after #"
- " assuming %c\n", run_time, modifier); }
- else
-@@ -251,7 +251,7 @@ main(int argc, char **argv)
- case 'h': run_time = run_time * 60 * 60; break;
- case 'd': run_time = run_time * 60 * 60 * 24; break;
- default:
-- printf("Invalid time modifier, try: s|h|m|d\n"); exit(-1);
-+ fprintf(stderr, "Invalid time modifier, try: s|h|m|d\n"); exit(-1);
- }
- if (!quiet_mode)
- printf("PAN will run for %d seconds\n", run_time);
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-librttest-rdtsc-cross.diff b/patches/ltp-full-20090131/ltp-full-20090131-librttest-rdtsc-cross.diff
deleted file mode 100644
index d26faa82e..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-librttest-rdtsc-cross.diff
+++ /dev/null
@@ -1,21 +0,0 @@
----
- testcases/realtime/include/librttest.h | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-Index: ltp-full-20090131/testcases/realtime/include/librttest.h
-===================================================================
---- ltp-full-20090131.orig/testcases/realtime/include/librttest.h
-+++ ltp-full-20090131/testcases/realtime/include/librttest.h
-@@ -124,7 +124,11 @@ typedef struct { volatile int counter; }
- } while(0)
- #endif
- #else
--#error
-+#warning "rdtscll() not implemented for this architecture"
-+#define rdtscll(val) \
-+ do { \
-+ val = 0; \
-+ } while(0)
- #endif
-
- extern pthread_mutex_t _buffer_mutex;
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-pan-dont-run-infinite.diff b/patches/ltp-full-20090131/ltp-full-20090131-pan-dont-run-infinite.diff
deleted file mode 100644
index 9c6d37a0f..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-pan-dont-run-infinite.diff
+++ /dev/null
@@ -1,45 +0,0 @@
-Subject: limit starts when running for certain time, too
-From: Marc Kleine-Budde <mkl@pengutronix.de>
-
-This patches add a feature to limit the number of times a test is
-started when running for a certain time instead of infinite runs.
-
-This could be used to give a timeout for a certain test.
-
-Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
----
- pan/pan.c | 7 +++++--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-Index: ltp-full-20090131/pan/pan.c
-===================================================================
---- ltp-full-20090131.orig/pan/pan.c
-+++ ltp-full-20090131/pan/pan.c
-@@ -164,6 +164,7 @@ main(int argc, char **argv)
- int failcnt = 0; /* count of total testcases that failed. */
- int err, i;
- int starts = -1;
-+ int timed = 0;
- int run_time = -1; char modifier = 'm'; int ret = 0;
- int stop;
- int go_idle;
-@@ -254,7 +255,7 @@ main(int argc, char **argv)
- }
- printf("PAN will run for %d seconds\n", run_time);
- }
-- starts = 0; //-t implies run as many starts as possible
-+ timed = 1; //-t implies run as many starts as possible, by default
- break;
- case 'x': /* number of tags to keep running */
- keep_active = atoi(optarg);
-@@ -347,7 +348,9 @@ main(int argc, char **argv)
- /* Supply a default for starts. If we are in sequential mode, use
- * the number of commands available; otherwise 1.
- */
-- if (starts == -1) {
-+ if (timed == 1 && starts == -1) { /* timed, infinite by default */
-+ starts = -1;
-+ } else if (starts == -1) {
- if (sequential) {
- starts = coll->cnt;
- } else {
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-reduce_pans_noise.diff b/patches/ltp-full-20090131/ltp-full-20090131-reduce_pans_noise.diff
deleted file mode 100644
index 3bd0d3406..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-reduce_pans_noise.diff
+++ /dev/null
@@ -1,34 +0,0 @@
-Subject: Honor the -q command line option
-From: Juergen Beisert <jbe@pengutronix.de>
-
-If one wants pan to be quiet, pan should honor this.
-
-Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
-
----
- pan/pan.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-Index: ltp-full-20090131/pan/pan.c
-===================================================================
---- ltp-full-20090131.orig/pan/pan.c
-+++ ltp-full-20090131/pan/pan.c
-@@ -207,7 +207,7 @@ main(int argc, char **argv)
- filename = strdup(optarg);
- break;
- case 'h': /* help */
-- fprintf(stdout, "Usage: pan -n name [ -SyAehp ] [ -s starts ]"
-+ fprintf(stdout, "Usage: pan -n name [ -SyAehpq ] [ -s starts ]"
- " [-t time[s|m|h|d] [ -x nactive ] [ -l logfile ]\n\t"
- "[ -a active-file ] [ -f command-file ] "
- "[ -C fail-command-file ] "
-@@ -253,7 +253,8 @@ main(int argc, char **argv)
- default:
- printf("Invalid time modifier, try: s|h|m|d\n"); exit(-1);
- }
-- printf("PAN will run for %d seconds\n", run_time);
-+ if (!quiet_mode)
-+ printf("PAN will run for %d seconds\n", run_time);
- }
- timed = 1; //-t implies run as many starts as possible, by default
- break;
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-remove-group-user-check.diff b/patches/ltp-full-20090131/ltp-full-20090131-remove-group-user-check.diff
deleted file mode 100644
index 293b8097a..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-remove-group-user-check.diff
+++ /dev/null
@@ -1,27 +0,0 @@
-Subject: [patch] Disable the group and user test.
-From: Juergen Beisert <j.beisert@pengutronix.de>
-
-It makes no sense to check users and groups on the host system when the tests
-are intended to run on a target.
-
-TODO: Disable this test, when configure detects cross compiling
-
-Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
-
----
- Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-Index: ltp-full-20090131/Makefile
-===================================================================
---- ltp-full-20090131.orig/Makefile
-+++ ltp-full-20090131/Makefile
-@@ -36,7 +36,7 @@ install: all
- @$(MAKE) -C doc/man1 install
- @$(MAKE) -C doc/man3 install
-
-- @./IDcheck.sh
-+# @./IDcheck.sh
-
- libltp.a: config.h
- @$(MAKE) -C lib $@
diff --git a/patches/ltp-full-20090131/ltp-full-20090131-undefined-ar.diff b/patches/ltp-full-20090131/ltp-full-20090131-undefined-ar.diff
deleted file mode 100644
index 11ec3c1ec..000000000
--- a/patches/ltp-full-20090131/ltp-full-20090131-undefined-ar.diff
+++ /dev/null
@@ -1,31 +0,0 @@
-From: Robert Schwebel <r.schwebel@pengutronix.de>
-Subject: [patch] fix AC_PROG_AR definition
-
-This is usually not defined:
-
-rsc@thebe:ltp-full-20090131$ autoreconf
-configure.ac:10: error: possibly undefined macro: AC_PROG_AR
- If this token and others are legitimate, please use m4_pattern_allow.
- See the Autoconf documentation.
-autoreconf: /usr/bin/autoconf failed with exit status: 1
-
-Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
-
----
- configure.ac | 3 +++
- 1 file changed, 3 insertions(+)
-
-Index: ltp-full-20090131/configure.ac
-===================================================================
---- ltp-full-20090131.orig/configure.ac
-+++ ltp-full-20090131/configure.ac
-@@ -5,6 +5,9 @@ AC_CONFIG_HEADERS([include/config.h])
- AC_CONFIG_FILES([config.mk m4/Makefile])
-
- AC_CANONICAL_HOST
-+
-+AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL(AR, ar, :)])
-+
- AC_PROG_CC
- AC_PROG_AR
- AC_PROG_RANLIB
diff --git a/patches/ltp-full-20090131/series b/patches/ltp-full-20090131/series
deleted file mode 100644
index 0bd621ef6..000000000
--- a/patches/ltp-full-20090131/series
+++ /dev/null
@@ -1,12 +0,0 @@
-ltp-full-20090131-duplicate-tst-total.diff
-ltp-full-20090131-librttest-rdtsc-cross.diff
-ltp-full-20090131-undefined-ar.diff
-ltp-full-20090131-crosscompile.diff
-ltp-full-20090131-add-autoreconf.diff
-ltp-full-20090131-dont-install-objectfiles.diff
-ltp-full-20090131-disable-epoll_create2.diff
-ltp-full-20090131-arch-specific-tests.diff
-ltp-full-20090131-remove-group-user-check.diff
-ltp-full-20090131-pan-dont-run-infinite.diff
-ltp-full-20090131-reduce_pans_noise.diff
-ltp-full-20090131-forward-error-messages-to-stderr.diff