mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
2fc1eaec58
klibc failed to build with armv7+ when using thumb2
it needed to resepct TUNE_CCARGS
Add patches to fix build with musl, to sort out
the linux header maze.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
(cherry picked from commit 15266c135a)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
30 lines
680 B
Diff
30 lines
680 B
Diff
From b4e120f5edf06e6df138b1804a8b5180584cea6b Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Mon, 10 Jul 2017 20:42:50 -0700
|
|
Subject: [PATCH] mkfifo: Implement mkfifo
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
usr/utils/mkfifo.c | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/usr/utils/mkfifo.c b/usr/utils/mkfifo.c
|
|
index 5a758b2a..f1f577e6 100644
|
|
--- a/usr/utils/mkfifo.c
|
|
+++ b/usr/utils/mkfifo.c
|
|
@@ -26,6 +26,11 @@ static int make_fifo(char *dir)
|
|
return 0;
|
|
}
|
|
|
|
+int mkfifo (const char *__p, mode_t __m)
|
|
+{
|
|
+ return mknod(__p, (__m & ~S_IFMT) | S_IFIFO, (dev_t) 0);
|
|
+}
|
|
+
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int c, ret = 0;
|
|
--
|
|
2.13.2
|
|
|