mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-21 12:00:13 +00:00
uml-utilities: Fix problem founds during musl build
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> (cherry picked from commit 1250668972522b6f1552de23b7cfc4a93701c24b) Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
parent
412865c325
commit
6d028e3529
@ -0,0 +1,41 @@
|
||||
From a8d85949a068ee6cd9a2f923cd039047993f239e Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Mon, 3 Apr 2017 17:11:32 -0700
|
||||
Subject: [PATCH] include required system header files for fd_set and makedev
|
||||
|
||||
fd_set comes from sys/select.h
|
||||
makedev macro is defined in sys/sysmacros.h
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
uml_net/ethertap.c | 1 +
|
||||
uml_net/host.c | 1 +
|
||||
2 files changed, 2 insertions(+)
|
||||
|
||||
diff --git a/uml_net/ethertap.c b/uml_net/ethertap.c
|
||||
index ddd41f2..57f7119 100644
|
||||
--- a/uml_net/ethertap.c
|
||||
+++ b/uml_net/ethertap.c
|
||||
@@ -11,6 +11,7 @@
|
||||
#include <sys/signal.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/stat.h>
|
||||
+#include <sys/select.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <net/if.h>
|
||||
#include "host.h"
|
||||
diff --git a/uml_net/host.c b/uml_net/host.c
|
||||
index 65c20df..fc04cd4 100644
|
||||
--- a/uml_net/host.c
|
||||
+++ b/uml_net/host.c
|
||||
@@ -10,6 +10,7 @@
|
||||
#include <ctype.h>
|
||||
#include <sys/wait.h>
|
||||
#include <sys/stat.h>
|
||||
+#include <sys/sysmacros.h>
|
||||
#include "output.h"
|
||||
#include "host.h"
|
||||
|
||||
--
|
||||
2.12.2
|
||||
|
||||
@ -3,10 +3,11 @@ SUMMARY = "Utilities for User-Mode-Linux"
|
||||
LICENSE = "GPL-2.0"
|
||||
DEPENDS = "zlib ncurses readline"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
|
||||
SRC_URI = "http://downloads.sourceforge.net/project/user-mode-linux/tools/1/uml_utilities_${PV}.tar.bz2 \
|
||||
SRC_URI = "http://downloads.sourceforge.net/project/user-mode-linux/tools/1/uml_utilities_${PV}.tar.bz2 \
|
||||
file://fix-ldflags.patch \
|
||||
file://unstrip.patch \
|
||||
"
|
||||
file://0001-include-required-system-header-files-for-fd_set-and-.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "2c1ccd9efacbfb39e42d482b89b2550a"
|
||||
SRC_URI[sha256sum] = "4f179b1db021ef15ac7e9b2eed57c525db127a754c574f591c367460cded9f41"
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user