summaryrefslogtreecommitdiffstats
path: root/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
diff options
context:
space:
mode:
authorDariusz Pelowski <dariusz.pelowski@gmail.com>2017-11-05 13:15:41 +0100
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-11-06 08:51:29 -0500
commit8cc50eae10a10f5aeaa681132889b2a6db8809bd (patch)
tree5bd519791a2207f2c8a102a651a9b4f7661f51bd /recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
parent71dc7faa0c7ceb9396e51bf7a77502c3781a54f2 (diff)
downloadmeta-virtualization-8cc50eae10a10f5aeaa681132889b2a6db8809bd.tar.gz
kvmtool: fix compilation errors
Fixed issues: Usage of makedev requires including <sys/sysmacros.h> otherwise the error is raised due to multiple definition in <sys/types.h>. Add include path to kernel headers required to get kvmtool compilatioin successful. Signed-off-by: Dariusz Pelowski <dariusz.pelowski@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch')
-rw-r--r--recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch b/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
new file mode 100644
index 00000000..63911fc2
--- /dev/null
+++ b/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch
@@ -0,0 +1,27 @@
1From bcd954ffdb9383030e02d356b51e09e4e2a7105a Mon Sep 17 00:00:00 2001
2From: Dariusz Pelowski <dariusz.pelowski@gmail.com>
3Date: Sun, 5 Nov 2017 12:39:52 +0100
4Subject: [PATCH 1/2] kvmtool: 9p: fixed compilation error
5
6makedev is defined in sys/sysmacros.h
7
8Signed-off-by: Dariusz Pelowski <dariusz.pelowski@gmail.com>
9---
10 virtio/9p.c | 1 +
11 1 file changed, 1 insertion(+)
12
13diff --git a/virtio/9p.c b/virtio/9p.c
14index 6acbfdd..1dee2c2 100644
15--- a/virtio/9p.c
16+++ b/virtio/9p.c
17@@ -15,6 +15,7 @@
18 #include <string.h>
19 #include <errno.h>
20 #include <sys/vfs.h>
21+#include <sys/sysmacros.h>
22
23 #include <linux/virtio_ring.h>
24 #include <linux/virtio_9p.h>
25--
262.15.0
27