diff options
author | Matt Weber <matthew.weber@rockwellcollins.com> | 2017-12-06 22:19:56 -0600 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-08 17:48:13 +0100 |
commit | f20615b53e83d6263346cb038d59df8e8d6b2b74 (patch) | |
tree | 8efc8b72d2d544299ec825765b428d83e87908f7 /package/kvmtool/0003-use-poll.h-instead-of-sys-poll.h.patch | |
parent | e0b9052cf0ec4198b95cebc97f0fa65209510bad (diff) | |
download | buildroot-f20615b53e83d6263346cb038d59df8e8d6b2b74.tar.gz buildroot-f20615b53e83d6263346cb038d59df8e8d6b2b74.zip |
kvmtool: bump to f77d646ba0
Upstream Commit:
2017-11-03 16:19:58 +0000
irq.h: fix compilation error due to missing bool type
The following patches were updated/removed.
- 0001-avoid-redefining-PAGE_SIZE.patch is removed, as
it has been merged upstream as of commit 4095fac8
- 0002-x86-kvm-cpu.c-don-t-include-asm-msr-index.h.patch is
removed, as it has been merged upstream as of commit
1cc05b24
- 0003-use-poll.h-instead-of-sys-poll.h.patch is removed,
as it has been merged upstream as of commit 52c22e6e
- 0004-check-for-and-use-C-library-provided-strlcpy-and-str.patch
is removed, as it has been merged upstream as of commit
8f22adc4
- 0005-Fix-call-to-connect.patch is removed, as it has been
merged upstream as of commit d77bd4f4
Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/kvmtool/0003-use-poll.h-instead-of-sys-poll.h.patch')
-rw-r--r-- | package/kvmtool/0003-use-poll.h-instead-of-sys-poll.h.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/package/kvmtool/0003-use-poll.h-instead-of-sys-poll.h.patch b/package/kvmtool/0003-use-poll.h-instead-of-sys-poll.h.patch deleted file mode 100644 index a358569b67..0000000000 --- a/package/kvmtool/0003-use-poll.h-instead-of-sys-poll.h.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 19490e24895df95253e43a7aacf3ef408b830bd5 Mon Sep 17 00:00:00 2001 -From: Andre Przywara <andre.przywara@arm.com> -Date: Fri, 17 Jul 2015 17:02:15 +0100 -Subject: [PATCH] use <poll.h> instead of <sys/poll.h> - -The manpage of poll(2) states that the prototype of poll is defined -in <poll.h>. Use that header file instead of <sys/poll.h> to allow -compilation against musl-libc. - -Signed-off-by: Andre Przywara <andre.przywara@arm.com> -Signed-off-by: Will Deacon <will.deacon@arm.com> -[backport from upstream commit 52c22e6e64a94cc701d86587d32cd3822ac5c293.] -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---- - disk/core.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/disk/core.c b/disk/core.c -index 309e16c..dd2f258 100644 ---- a/disk/core.c -+++ b/disk/core.c -@@ -5,7 +5,7 @@ - - #include <linux/err.h> - #include <sys/eventfd.h> --#include <sys/poll.h> -+#include <poll.h> - - #define AIO_MAX 256 - --- -2.9.4 - |