diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2018-04-10 23:02:09 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-05-01 18:11:03 -0700 |
commit | ddda5e7b68a7df73e28099dafeaf77f29e0575d3 (patch) | |
tree | caa615adca220e063d4e5c35f3d81d9a4d360d65 /meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch | |
parent | 663bc6f0160adb570c3a7d0b64d1f7f60cb2269e (diff) | |
download | meta-openembedded-ddda5e7b68a7df73e28099dafeaf77f29e0575d3.tar.gz |
klibc-2.0.4: refresh patches (using devtool)
Silence warnings about ingnored context.
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Diffstat (limited to 'meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch')
-rw-r--r-- | meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch index 9791412e4..3bc081d4e 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch | |||
@@ -1,15 +1,16 @@ | |||
1 | From b4e120f5edf06e6df138b1804a8b5180584cea6b Mon Sep 17 00:00:00 2001 | 1 | From cf97079009ba48d10e52052b2eab7461ea4dd09b Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Mon, 10 Jul 2017 20:42:50 -0700 | 3 | Date: Mon, 10 Jul 2017 20:42:50 -0700 |
4 | Subject: [PATCH] mkfifo: Implement mkfifo | 4 | Subject: [PATCH] mkfifo: Implement mkfifo |
5 | 5 | ||
6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
7 | |||
7 | --- | 8 | --- |
8 | usr/utils/mkfifo.c | 5 +++++ | 9 | usr/utils/mkfifo.c | 5 +++++ |
9 | 1 file changed, 5 insertions(+) | 10 | 1 file changed, 5 insertions(+) |
10 | 11 | ||
11 | diff --git a/usr/utils/mkfifo.c b/usr/utils/mkfifo.c | 12 | diff --git a/usr/utils/mkfifo.c b/usr/utils/mkfifo.c |
12 | index 5a758b2a..f1f577e6 100644 | 13 | index 5a758b2..f1f577e 100644 |
13 | --- a/usr/utils/mkfifo.c | 14 | --- a/usr/utils/mkfifo.c |
14 | +++ b/usr/utils/mkfifo.c | 15 | +++ b/usr/utils/mkfifo.c |
15 | @@ -26,6 +26,11 @@ static int make_fifo(char *dir) | 16 | @@ -26,6 +26,11 @@ static int make_fifo(char *dir) |
@@ -24,6 +25,3 @@ index 5a758b2a..f1f577e6 100644 | |||
24 | int main(int argc, char *argv[]) | 25 | int main(int argc, char *argv[]) |
25 | { | 26 | { |
26 | int c, ret = 0; | 27 | int c, ret = 0; |
27 | -- | ||
28 | 2.13.2 | ||
29 | |||