diff options
Diffstat (limited to 'meta/recipes-kernel/kexec/kexec-tools')
| -rw-r--r-- | meta/recipes-kernel/kexec/kexec-tools/0001-vmcore-dmesg-Define-_GNU_SOURCE.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-kernel/kexec/kexec-tools/0001-vmcore-dmesg-Define-_GNU_SOURCE.patch b/meta/recipes-kernel/kexec/kexec-tools/0001-vmcore-dmesg-Define-_GNU_SOURCE.patch new file mode 100644 index 0000000000..90c2f6e0ec --- /dev/null +++ b/meta/recipes-kernel/kexec/kexec-tools/0001-vmcore-dmesg-Define-_GNU_SOURCE.patch | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | From d811875a41b4628040abaada3da29b7b9592e757 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Sat, 9 Jan 2016 17:16:16 -0800 | ||
| 4 | Subject: [PATCH] vmcore-dmesg: Define _GNU_SOURCE | ||
| 5 | |||
| 6 | loff_t is guarded with _GNU_SOURCE on some C library implementations | ||
| 7 | e.g. musl since this type is not defined by POSIX. Define _GNU_SOURCE to | ||
| 8 | include this define, it should help compiling on musl while nothing | ||
| 9 | changes for glibc based systems since there _GNU_SOURCE is already | ||
| 10 | defined | ||
| 11 | |||
| 12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 13 | --- | ||
| 14 | Upstream-Status: Submitted | ||
| 15 | |||
| 16 | vmcore-dmesg/vmcore-dmesg.c | 1 + | ||
| 17 | 1 file changed, 1 insertion(+) | ||
| 18 | |||
| 19 | diff --git a/vmcore-dmesg/vmcore-dmesg.c b/vmcore-dmesg/vmcore-dmesg.c | ||
| 20 | index 0364636..a8f56df 100644 | ||
| 21 | --- a/vmcore-dmesg/vmcore-dmesg.c | ||
| 22 | +++ b/vmcore-dmesg/vmcore-dmesg.c | ||
| 23 | @@ -1,4 +1,5 @@ | ||
| 24 | #define _XOPEN_SOURCE 600 | ||
| 25 | +#define _GNU_SOURCE | ||
| 26 | #define _LARGEFILE_SOURCE 1 | ||
| 27 | #define _FILE_OFFSET_BITS 64 | ||
| 28 | #include <endian.h> | ||
| 29 | -- | ||
| 30 | 2.7.0 | ||
| 31 | |||
