summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/kmod
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2015-04-27 20:43:26 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-04-30 23:04:13 +0100
commit2be3398005922111be89ef2af12f049b6880c684 (patch)
tree8d3557431246887a4bba5b77eb3439658caf83a8 /meta/recipes-kernel/kmod
parent1903369bdd3702b739fb955ae7c4af82087ecb5a (diff)
downloadpoky-2be3398005922111be89ef2af12f049b6880c684.tar.gz
kmod: remove 0001-Makefile.am-fix-parallel-build-problem.patch
Confirmed with the author Qi, it isn't needed. (From OE-Core rev: 6ee6c39df4dea2dcd99cccad771e1326465e96dd) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/kmod')
-rw-r--r--meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch b/meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch
deleted file mode 100644
index 49b0209029..0000000000
--- a/meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1Upstream-Status: Pending
2
3Subject: Makefile.am: fix parallel build problem
4
5Fix parallel build problem to avoid errors like below.
6
7 install: cannot stat 'testsuite/module-playground/mod-fake-cciss.ko': No such file or directory
8
9Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
10---
11 Makefile.am | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/Makefile.am b/Makefile.am
15index 9457655..d5b02eb 100644
16--- a/Makefile.am
17+++ b/Makefile.am
18@@ -237,7 +237,7 @@ rootfs: build-module-playground
19
20 .PHONY: rootfs build-playground
21
22-$(ROOTFS): $(ROOTFS_PRISTINE)
23+$(ROOTFS): $(ROOTFS_PRISTINE) build-module-playground
24 $(CREATE_ROOTFS)
25
26 TESTSUITE_OVERRIDE_LIBS = \
27--
281.9.1
29