aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ltp/ltp
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@enea.com>2014-04-26 16:51:25 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-29 17:19:49 +0100
commitd72430772400c7733da2339f238ab4ea69e48a8e (patch)
tree7690c8c53408cc069e10f4d2c77de2a6bbe2b14a /meta/recipes-extended/ltp/ltp
parentbe8f766f43d85c364b9706b464ed0a59d0fbf0b7 (diff)
downloadopenembedded-core-d72430772400c7733da2339f238ab4ea69e48a8e.tar.gz
ltp: update version to 20140422
Update ltp version to 20140422 Removed two patches that already exist in the current version: 1. regen-makefile.patch 2. ffsb-remove-hardcoded-configure.patch Signed-off-by: Maxin B. John <maxin.john@enea.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/ltp/ltp')
-rw-r--r--meta/recipes-extended/ltp/ltp/ffsb-remove-hardcoded-configure.patch15
-rw-r--r--meta/recipes-extended/ltp/ltp/regen-makefile.patch22
2 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-extended/ltp/ltp/ffsb-remove-hardcoded-configure.patch b/meta/recipes-extended/ltp/ltp/ffsb-remove-hardcoded-configure.patch
deleted file mode 100644
index 9f02711070..0000000000
--- a/meta/recipes-extended/ltp/ltp/ffsb-remove-hardcoded-configure.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Get rid of the hardcoded configure call preventing cross-compilation
-
-Upstream-Status: Pending
-Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
-
---- a/utils/Makefile
-+++ b/utils/Makefile
-@@ -29,7 +29,6 @@ FILTER_OUT_DIRS := $(FFSBDIR)
- FFSB := $(FFSBDIR)/ffsb
-
- $(FFSB): $(FFSBDIR)
-- cd $^; ./configure
- $(MAKE) -C $^ -f "$(abs_srcdir)/$^/Makefile" all
- cp $(FFSBDIR)/ffsb ffsb
-
diff --git a/meta/recipes-extended/ltp/ltp/regen-makefile.patch b/meta/recipes-extended/ltp/ltp/regen-makefile.patch
deleted file mode 100644
index 3e114a1d85..0000000000
--- a/meta/recipes-extended/ltp/ltp/regen-makefile.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Fix the dependencies for linux_syscall_numbers.h where in a parallel build it was
-finding the temporary file linux_syscall_numbers.h.[pid].sh (where sh is an
-architecture name). Instead don't wildcard *.sh as the only .sh we care about
-here is regen.sh, so hard-code that.
-
-Upstream-Status: Pending
-Signed-off-by: Ross Burton <ross.burton@intel.com>
-
-diff --git a/testcases/kernel/include/Makefile b/testcases/kernel/include/Makefile
-index db21a2a..585eb5e 100644
---- a/testcases/kernel/include/Makefile
-+++ b/testcases/kernel/include/Makefile
-@@ -28,7 +28,7 @@ INSTALL_DIR := $(includedir)
-
- MAKE_TARGETS := linux_syscall_numbers.h
-
--linux_syscall_numbers.h: $(wildcard $(abs_srcdir)/*.sh $(abs_srcdir)/*.in)
-- $(SHELL) "$(abs_srcdir)/regen.sh"
-+linux_syscall_numbers.h: $(abs_srcdir)/regen.sh $(wildcard $(abs_srcdir)/*.in)
-+ $(SHELL) "$<"
-
- include $(top_srcdir)/include/mk/generic_leaf_target.mk