From e0c1b38c1c38b468f37ac5061837b5e359cbf371 Mon Sep 17 00:00:00 2001 From: nbd Date: Sun, 21 Sep 2008 11:25:17 +0000 Subject: rename generic-2.6/patches to generic-2.6/patches-2.6.21 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12636 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../902-darwin_scripts_include.patch | 154 +++++++++++++++++++++ 1 file changed, 154 insertions(+) create mode 100644 target/linux/generic-2.6/patches-2.6.21/902-darwin_scripts_include.patch (limited to 'target/linux/generic-2.6/patches-2.6.21/902-darwin_scripts_include.patch') diff --git a/target/linux/generic-2.6/patches-2.6.21/902-darwin_scripts_include.patch b/target/linux/generic-2.6/patches-2.6.21/902-darwin_scripts_include.patch new file mode 100644 index 000000000..0e981def5 --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.21/902-darwin_scripts_include.patch @@ -0,0 +1,154 @@ +Index: linux-2.6.21.7/scripts/genksyms/parse.c_shipped +=================================================================== +--- linux-2.6.21.7.orig/scripts/genksyms/parse.c_shipped ++++ linux-2.6.21.7/scripts/genksyms/parse.c_shipped +@@ -144,7 +144,9 @@ + + + #include ++#ifndef __APPLE__ + #include ++#endif + #include "genksyms.h" + + static int is_typedef; +Index: linux-2.6.21.7/scripts/genksyms/parse.y +=================================================================== +--- linux-2.6.21.7.orig/scripts/genksyms/parse.y ++++ linux-2.6.21.7/scripts/genksyms/parse.y +@@ -24,7 +24,9 @@ + %{ + + #include ++#ifndef __APPLE__ + #include ++#endif + #include "genksyms.h" + + static int is_typedef; +Index: linux-2.6.21.7/scripts/kallsyms.c +=================================================================== +--- linux-2.6.21.7.orig/scripts/kallsyms.c ++++ linux-2.6.21.7/scripts/kallsyms.c +@@ -30,6 +30,35 @@ + #include + #include + #include ++#ifdef __APPLE__ ++/* Darwin has no memmem implementation, this one is ripped of the uClibc-0.9.28 source */ ++void *memmem (const void *haystack, size_t haystack_len, ++ const void *needle, size_t needle_len) ++{ ++ const char *begin; ++ const char *const last_possible ++ = (const char *) haystack + haystack_len - needle_len; ++ ++ if (needle_len == 0) ++ /* The first occurrence of the empty string is deemed to occur at ++ the beginning of the string. */ ++ return (void *) haystack; ++ ++ /* Sanity check, otherwise the loop might search through the whole ++ memory. */ ++ if (__builtin_expect (haystack_len < needle_len, 0)) ++ return NULL; ++ ++ for (begin = (const char *) haystack; begin <= last_possible; ++begin) ++ if (begin[0] == ((const char *) needle)[0] && ++ !memcmp ((const void *) &begin[1], ++ (const void *) ((const char *) needle + 1), ++ needle_len - 1)) ++ return (void *) begin; ++ ++ return NULL; ++} ++#endif + + #define KSYM_NAME_LEN 127 + +Index: linux-2.6.21.7/scripts/kconfig/Makefile +=================================================================== +--- linux-2.6.21.7.orig/scripts/kconfig/Makefile ++++ linux-2.6.21.7/scripts/kconfig/Makefile +@@ -87,6 +87,9 @@ check-lxdialog := $(srctree)/$(src)/lxd + # we really need to do so. (Do not call gcc as part of make mrproper) + HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) + HOST_LOADLIBES = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC)) ++ifeq ($(shell uname -s),Darwin) ++HOST_LOADLIBES += -lncurses ++endif + + HOST_EXTRACFLAGS += -DLOCALE + +Index: linux-2.6.21.7/scripts/mod/file2alias.c +=================================================================== +--- linux-2.6.21.7.orig/scripts/mod/file2alias.c ++++ linux-2.6.21.7/scripts/mod/file2alias.c +@@ -37,7 +37,21 @@ typedef unsigned char __u8; + * even potentially has different endianness and word sizes, since + * we handle those differences explicitly below */ + #include "../../include/linux/mod_devicetable.h" ++#ifndef __APPLE__ + #include "../../include/linux/input.h" ++#else ++#define EV_MAX 0x1f ++#define KEY_MUTE 113 ++#define KEY_MIN_INTERESTING KEY_MUTE ++#define KEY_MAX 0x1ff ++#define REL_MAX 0x0f ++#define ABS_MAX 0x3f ++#define MSC_MAX 0x07 ++#define LED_MAX 0x0f ++#define SND_MAX 0x07 ++#define FF_MAX 0x7f ++#define SW_MAX 0x0f ++#endif + + #define ADD(str, sep, cond, field) \ + do { \ +Index: linux-2.6.21.7/scripts/mod/mk_elfconfig.c +=================================================================== +--- linux-2.6.21.7.orig/scripts/mod/mk_elfconfig.c ++++ linux-2.6.21.7/scripts/mod/mk_elfconfig.c +@@ -1,7 +1,11 @@ + #include + #include + #include ++#ifndef __APPLE__ + #include ++#else ++#include "../../../../../tools/sstrip/include/elf.h" ++#endif + + int + main(int argc, char **argv) +Index: linux-2.6.21.7/scripts/mod/modpost.h +=================================================================== +--- linux-2.6.21.7.orig/scripts/mod/modpost.h ++++ linux-2.6.21.7/scripts/mod/modpost.h +@@ -7,7 +7,11 @@ + #include + #include + #include ++#ifndef __APPLE__ + #include ++#else ++#include "../../../../../tools/sstrip/include/elf.h" ++#endif + + #include "elfconfig.h" + +Index: linux-2.6.21.7/scripts/mod/sumversion.c +=================================================================== +--- linux-2.6.21.7.orig/scripts/mod/sumversion.c ++++ linux-2.6.21.7/scripts/mod/sumversion.c +@@ -8,6 +8,9 @@ + #include + #include + #include "modpost.h" ++#ifdef __APPLE__ ++#include ++#endif + + /* + * Stolen form Cryptographic API. -- cgit v1.2.3