Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/ltp-testsuite: Fix build on uClibc-ng
@ 2017-12-07 17:29 Petr Vorel
  2017-12-07 21:37 ` Peter Korsgaard
  2017-12-27 11:42 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Petr Vorel @ 2017-12-07 17:29 UTC (permalink / raw)
  To: buildroot

Fixes: http://autobuild.buildroot.net/results/6c0506423c76b61018da26c2549570e3d9eb5763/

Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
---
Fix from upstream
https://github.com/linux-test-project/ltp/commit/0ee59c66f4e4930d543395fb8617e26cf8b22025
---
 .../0004-syscalls-mknodat-Fix-missing-config.patch | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 package/ltp-testsuite/0004-syscalls-mknodat-Fix-missing-config.patch

diff --git a/package/ltp-testsuite/0004-syscalls-mknodat-Fix-missing-config.patch b/package/ltp-testsuite/0004-syscalls-mknodat-Fix-missing-config.patch
new file mode 100644
index 0000000000..d315a948a9
--- /dev/null
+++ b/package/ltp-testsuite/0004-syscalls-mknodat-Fix-missing-config.patch
@@ -0,0 +1,28 @@
+From 0ee59c66f4e4930d543395fb8617e26cf8b22025 Mon Sep 17 00:00:00 2001
+From: Petr Vorel <pvorel@suse.cz>
+Date: Thu, 7 Dec 2017 17:37:01 +0100
+Subject: [PATCH] syscalls/mknodat: Fix missing config
+
+Found by buildroot project, where this broke build on uClibc-ng, thanks!
+http://autobuild.buildroot.net/results/6c0506423c76b61018da26c2549570e3d9eb5763/build-end.log
+
+Signed-off-by: Petr Vorel <pvorel@suse.cz>
+---
+ testcases/kernel/syscalls/mknodat/mknodat.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/testcases/kernel/syscalls/mknodat/mknodat.h b/testcases/kernel/syscalls/mknodat/mknodat.h
+index 577d5ac9c..b4e828c5d 100644
+--- a/testcases/kernel/syscalls/mknodat/mknodat.h
++++ b/testcases/kernel/syscalls/mknodat/mknodat.h
+@@ -22,6 +22,7 @@
+ #define MKNODAT_H
+ 
+ #include <sys/types.h>
++#include "config.h"
+ #include "lapi/syscalls.h"
+ 
+ #if !defined(HAVE_MKNODAT)
+-- 
+2.15.0
+
-- 
2.15.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/1] package/ltp-testsuite: Fix build on uClibc-ng
  2017-12-07 17:29 [Buildroot] [PATCH 1/1] package/ltp-testsuite: Fix build on uClibc-ng Petr Vorel
@ 2017-12-07 21:37 ` Peter Korsgaard
  2017-12-07 21:56   ` Petr Vorel
  2017-12-27 11:42 ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2017-12-07 21:37 UTC (permalink / raw)
  To: buildroot

>>>>> "Petr" == Petr Vorel <petr.vorel@gmail.com> writes:

 > Fixes: http://autobuild.buildroot.net/results/6c0506423c76b61018da26c2549570e3d9eb5763/
 > Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
 > ---
 > Fix from upstream
 > https://github.com/linux-test-project/ltp/commit/0ee59c66f4e4930d543395fb8617e26cf8b22025

Committed after slightly extending the commit message, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/1] package/ltp-testsuite: Fix build on uClibc-ng
  2017-12-07 21:37 ` Peter Korsgaard
@ 2017-12-07 21:56   ` Petr Vorel
  0 siblings, 0 replies; 4+ messages in thread
From: Petr Vorel @ 2017-12-07 21:56 UTC (permalink / raw)
  To: buildroot

Hi Peter,

> Committed after slightly extending the commit message, thanks.
Better commit message, indeed. Thanks!

Kind regards,
Petr

> 
> -- 
> Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/1] package/ltp-testsuite: Fix build on uClibc-ng
  2017-12-07 17:29 [Buildroot] [PATCH 1/1] package/ltp-testsuite: Fix build on uClibc-ng Petr Vorel
  2017-12-07 21:37 ` Peter Korsgaard
@ 2017-12-27 11:42 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2017-12-27 11:42 UTC (permalink / raw)
  To: buildroot

>>>>> "Petr" == Petr Vorel <petr.vorel@gmail.com> writes:

 > Fixes: http://autobuild.buildroot.net/results/6c0506423c76b61018da26c2549570e3d9eb5763/
 > Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
 > ---
 > Fix from upstream
 > https://github.com/linux-test-project/ltp/commit/0ee59c66f4e4930d543395fb8617e26cf8b22025

Committed to 2017.11.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-12-27 11:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-07 17:29 [Buildroot] [PATCH 1/1] package/ltp-testsuite: Fix build on uClibc-ng Petr Vorel
2017-12-07 21:37 ` Peter Korsgaard
2017-12-07 21:56   ` Petr Vorel
2017-12-27 11:42 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox