[Buildroot] [git commit] uclibc: add missing defines for m68k/microblaze

Peter Korsgaard peter at korsgaard.com
Sun Jul 31 21:23:56 UTC 2016


commit: https://git.buildroot.net/buildroot/commit/?id=48f8ed2baecc6aecb407d0266767c94438fb1d2b
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

POLLRDHUP supported since Linux 2.6.17.
http://man7.org/linux/man-pages/man2/poll.2.html

Fixes:
http://autobuild.buildroot.net/results/0f5ed287f1756fbec710454e9c694202c3206dbe/

Signed-off-by: Waldemar Brodkorb <wbx at openadk.org>
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 ...issing-Linux-extension-headers-for-poll.h.patch | 71 ++++++++++++++++++++++
 1 file changed, 71 insertions(+)

diff --git a/package/uclibc/0002-include-missing-Linux-extension-headers-for-poll.h.patch b/package/uclibc/0002-include-missing-Linux-extension-headers-for-poll.h.patch
new file mode 100644
index 0000000..f28cd80
--- /dev/null
+++ b/package/uclibc/0002-include-missing-Linux-extension-headers-for-poll.h.patch
@@ -0,0 +1,71 @@
+From 7a575d98449780a95fc4004b179a2ea0dcd0f468 Mon Sep 17 00:00:00 2001
+From: Waldemar Brodkorb <wbx at uclibc-ng.org>
+Date: Sun, 31 Jul 2016 13:22:00 +0200
+Subject: [PATCH] include missing Linux extension headers for poll.h
+
+This was found by Buildroot autobuilders for m68k.
+
+Signed-off-by: Waldemar Brodkorb <wbx at uclibc-ng.org>
+---
+ libc/sysdeps/linux/c6x/bits/poll.h        | 7 +++++++
+ libc/sysdeps/linux/m68k/bits/poll.h       | 7 +++++++
+ libc/sysdeps/linux/microblaze/bits/poll.h | 7 +++++++
+ 3 files changed, 21 insertions(+)
+
+diff --git a/libc/sysdeps/linux/c6x/bits/poll.h b/libc/sysdeps/linux/c6x/bits/poll.h
+index 1d845eb..4c984cc 100644
+--- a/libc/sysdeps/linux/c6x/bits/poll.h
++++ b/libc/sysdeps/linux/c6x/bits/poll.h
+@@ -34,6 +34,13 @@
+ # define POLLWRBAND	0x100		/* Priority data may be written.  */
+ #endif
+ 
++#ifdef __USE_GNU
++/* These are extensions for Linux.  */
++# define POLLMSG	0x400
++# define POLLREMOVE	0x1000
++# define POLLRDHUP	0x2000
++#endif
++
+ /* Event types always implicitly polled for.  These bits need not be set in
+    `events', but they will appear in `revents' to indicate the status of
+    the file descriptor.  */
+diff --git a/libc/sysdeps/linux/m68k/bits/poll.h b/libc/sysdeps/linux/m68k/bits/poll.h
+index 1d845eb..4c984cc 100644
+--- a/libc/sysdeps/linux/m68k/bits/poll.h
++++ b/libc/sysdeps/linux/m68k/bits/poll.h
+@@ -34,6 +34,13 @@
+ # define POLLWRBAND	0x100		/* Priority data may be written.  */
+ #endif
+ 
++#ifdef __USE_GNU
++/* These are extensions for Linux.  */
++# define POLLMSG	0x400
++# define POLLREMOVE	0x1000
++# define POLLRDHUP	0x2000
++#endif
++
+ /* Event types always implicitly polled for.  These bits need not be set in
+    `events', but they will appear in `revents' to indicate the status of
+    the file descriptor.  */
+diff --git a/libc/sysdeps/linux/microblaze/bits/poll.h b/libc/sysdeps/linux/microblaze/bits/poll.h
+index 9b284c8..27c3219 100644
+--- a/libc/sysdeps/linux/microblaze/bits/poll.h
++++ b/libc/sysdeps/linux/microblaze/bits/poll.h
+@@ -34,6 +34,13 @@
+ # define POLLWRBAND	0x0200		/* Priority data may be written.  */
+ #endif
+ 
++#ifdef __USE_GNU
++/* These are extensions for Linux.  */
++# define POLLMSG	0x400
++# define POLLREMOVE	0x1000
++# define POLLRDHUP	0x2000
++#endif
++
+ /* Event types always implicitly polled for.  These bits need not be set in
+    `events', but they will appear in `revents' to indicate the status of
+    the file descriptor.  */
+-- 
+2.7.4 (Apple Git-66)
+


More information about the buildroot mailing list