diff options
Diffstat (limited to 'meta-initramfs/recipes-devtools/klibc/files/0001-include-linux-sysinfo.h-directly.patch')
-rw-r--r-- | meta-initramfs/recipes-devtools/klibc/files/0001-include-linux-sysinfo.h-directly.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-devtools/klibc/files/0001-include-linux-sysinfo.h-directly.patch b/meta-initramfs/recipes-devtools/klibc/files/0001-include-linux-sysinfo.h-directly.patch new file mode 100644 index 0000000000..04c97fc5ee --- /dev/null +++ b/meta-initramfs/recipes-devtools/klibc/files/0001-include-linux-sysinfo.h-directly.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From d966d52d1e569cbc2293d841285e2b8941f28c61 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sun, 9 Jul 2017 15:56:28 -0700 | ||
4 | Subject: [PATCH] include linux/sysinfo.h directly | ||
5 | |||
6 | This is done to avoid the kernel header linux/kernel.h to use | ||
7 | __GLIBC__ define to decide on if libc implements sysinfo() API | ||
8 | or not. Kernel headers should be independent of such assumptions | ||
9 | but until its done in right place, change the local header | ||
10 | override to avoid this assumption | ||
11 | |||
12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
13 | |||
14 | --- | ||
15 | usr/include/sys/sysinfo.h | 2 +- | ||
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
17 | |||
18 | diff --git a/usr/include/sys/sysinfo.h b/usr/include/sys/sysinfo.h | ||
19 | index dba68dc..d145c0b 100644 | ||
20 | --- a/usr/include/sys/sysinfo.h | ||
21 | +++ b/usr/include/sys/sysinfo.h | ||
22 | @@ -5,7 +5,7 @@ | ||
23 | #ifndef _SYS_SYSINFO_H | ||
24 | #define _SYS_SYSINFO_H | ||
25 | |||
26 | -#include <linux/kernel.h> | ||
27 | +#include <linux/sysinfo.h> | ||
28 | |||
29 | extern int sysinfo(struct sysinfo *info); | ||
30 | |||