diff options
Diffstat (limited to 'meta/recipes-kernel/kmod')
-rw-r--r-- | meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch b/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch deleted file mode 100644 index 0268216230..0000000000 --- a/meta/recipes-kernel/kmod/kmod/fix-undefined-O_CLOEXEC.patch +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | Upstream-Status: Not applicable | ||
2 | |||
3 | Index: git/libkmod/libkmod-private.h | ||
4 | =================================================================== | ||
5 | --- git.orig/libkmod/libkmod-private.h 2013-08-21 10:07:51.000000000 -0700 | ||
6 | +++ git/libkmod/libkmod-private.h 2013-08-21 14:34:04.558278849 -0700 | ||
7 | @@ -9,6 +9,10 @@ | ||
8 | #include "macro.h" | ||
9 | #include "libkmod.h" | ||
10 | |||
11 | +#ifndef O_CLOEXEC | ||
12 | +# define O_CLOEXEC 0 | ||
13 | +#endif | ||
14 | + | ||
15 | static _always_inline_ _printf_format_(2, 3) void | ||
16 | kmod_log_null(struct kmod_ctx *ctx, const char *format, ...) {} | ||
17 | |||