diff options
| author | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
| commit | 4b46c1f6e891b1ddd5968536440b888661fade3e (patch) | |
| tree | e0ba2c1f56f61b868bf746da5c4feabb25b800b2 /openembedded/packages/linux-libc-headers | |
| download | poky-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.gz | |
Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/linux-libc-headers')
6 files changed, 342 insertions, 0 deletions
diff --git a/openembedded/packages/linux-libc-headers/files/keyboard.patch b/openembedded/packages/linux-libc-headers/files/keyboard.patch new file mode 100644 index 0000000000..7df00418b1 --- /dev/null +++ b/openembedded/packages/linux-libc-headers/files/keyboard.patch | |||
| @@ -0,0 +1,78 @@ | |||
| 1 | --- kernel/include/linux/keyboard.h 2004-01-17 23:04:30.000000000 +0000 | ||
| 2 | +++ kernel/include/linux/keyboard.h 2004-08-30 12:49:41.000000000 +0100 | ||
| 3 | @@ -37,6 +44,8 @@ | ||
| 4 | #define KT_ASCII 9 | ||
| 5 | #define KT_LOCK 10 | ||
| 6 | #define KT_SLOCK 12 | ||
| 7 | +#define KT_X 13 /* A few useful symbols from the base X Keysym set, that go with... */ | ||
| 8 | +#define KT_XF 14 /* The XFree86 Internet multimedia and PDA keyboard symbols */ | ||
| 9 | |||
| 10 | #define K(t,v) (((t)<<8)|(v)) | ||
| 11 | #define KTYP(x) ((x) >> 8) | ||
| 12 | @@ -421,4 +430,66 @@ | ||
| 13 | #define NR_LOCK 8 | ||
| 14 | |||
| 15 | #define MAX_DIACR 256 | ||
| 16 | + | ||
| 17 | +/* | ||
| 18 | + * modifications to this section of this list should be coordinated with | ||
| 19 | + * the X Window System keysym list; life is much easier that way | ||
| 20 | + * | ||
| 21 | + */ | ||
| 22 | + | ||
| 23 | +/* These don't correspond identically. */ | ||
| 24 | +#define K_XMENU K(KT_X, 0x1) | ||
| 25 | +#define K_XTELEPHONE K(KT_X, 0x2) | ||
| 26 | + | ||
| 27 | +/* | ||
| 28 | + * XFree86 vendor specific keysyms. | ||
| 29 | + * | ||
| 30 | + * These map to XFree86 X keysym range is 0x1008FF01 - 0x1008FFFF; | ||
| 31 | + * for simplicity's sake, we'll define a simple identity mapping for these. | ||
| 32 | + * | ||
| 33 | + * Please coordinate changes here with XFree86.org, so this simple | ||
| 34 | + * identity mapping can be maintained (and old code "just works"). | ||
| 35 | + * | ||
| 36 | + * Keys found on some "Internet" keyboards. | ||
| 37 | + */ | ||
| 38 | +#define K_XFSTANDBY K(KT_XF,0x10) | ||
| 39 | +#define K_XFAUDIOLOWERVOLUME K(KT_XF,0x11) | ||
| 40 | +#define K_XFAUDIOMUTE K(KT_XF,0x12) | ||
| 41 | +#define K_XFAUDIORAISEVOLUME K(KT_XF,0x13) | ||
| 42 | +#define K_XFAUDIOPLAY K(KT_XF,0x14) | ||
| 43 | +#define K_XFAUDIOSTOP K(KT_XF,0x15) | ||
| 44 | +#define K_XFAUDIOPREV K(KT_XF,0x16) | ||
| 45 | +#define K_XFAUDIONEXT K(KT_XF,0x17) | ||
| 46 | +#define K_XFHOMEPAGE K(KT_XF,0x18) | ||
| 47 | +#define K_XFMAIL K(KT_XF,0x19) | ||
| 48 | +#define K_XFSTART K(KT_XF,0x1A) | ||
| 49 | +#define K_XFSEARCH K(KT_XF,0x1B) | ||
| 50 | +#define K_XFAUDIORECORD K(KT_XF,0x1C) | ||
| 51 | + | ||
| 52 | +/* These are sometimes found on PDA's (e.g. Palm, PocketPC or elsewhere) */ | ||
| 53 | +#define K_XFCALCULATOR K(KT_XF,0x1D) | ||
| 54 | +#define K_XFMEMO K(KT_XF,0x1E) | ||
| 55 | +#define K_XFTODOLIST K(KT_XF,0x1F) | ||
| 56 | +#define K_XFCALENDAR K(KT_XF,0x20) | ||
| 57 | +#define K_XFPOWERDOWN K(KT_XF,0x21) | ||
| 58 | +#define K_XFCONTRASTADJUST K(KT_XF,0x22) | ||
| 59 | +#define K_XFROCKERUP K(KT_XF,0x23) | ||
| 60 | +#define K_XFROCKERDOWN K(KT_XF,0x24) | ||
| 61 | +#define K_XFROCKERENTER K(KT_XF,0x25) | ||
| 62 | + | ||
| 63 | +/* Some more "Internet" keyboard symbols */ | ||
| 64 | +#define K_XFBACK K(KT_XF,0x26) | ||
| 65 | +#define K_XFFORWARD K(KT_XF,0x27) | ||
| 66 | +#define K_XFSTOP K(KT_XF,0x28) | ||
| 67 | +#define K_XFREFRESH K(KT_XF,0x29) | ||
| 68 | + | ||
| 69 | +/* Some more ... */ | ||
| 70 | +#define K_XFFAVORITES K(KT_XF,0x30) | ||
| 71 | +#define K_XFAUDIOPAUSE K(KT_XF,0x31) | ||
| 72 | +#define K_XFAUDIOMEDIA K(KT_XF,0x32) | ||
| 73 | +#define K_XFMYCOMPUTER K(KT_XF,0x33) | ||
| 74 | +#define K_XFVENDORHOME K(KT_XF,0x34) | ||
| 75 | +#define K_XFLIGHTBULB K(KT_XF,0x35) | ||
| 76 | +#define K_XFSHOP K(KT_XF,0x36) | ||
| 77 | + | ||
| 78 | #endif | ||
diff --git a/openembedded/packages/linux-libc-headers/linux-libc-headers-2.6.7.0/sh-missing.patch b/openembedded/packages/linux-libc-headers/linux-libc-headers-2.6.7.0/sh-missing.patch new file mode 100644 index 0000000000..e97650a9de --- /dev/null +++ b/openembedded/packages/linux-libc-headers/linux-libc-headers-2.6.7.0/sh-missing.patch | |||
| @@ -0,0 +1,72 @@ | |||
| 1 | |||
| 2 | # | ||
| 3 | # Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher | ||
| 4 | # | ||
| 5 | |||
| 6 | --- /dev/null 2004-06-02 16:28:12.000000000 -0500 | ||
| 7 | +++ linux-libc-headers-2.6.7.0/include/asm-sh/cpu-sh4/sigcontext.h 2004-08-27 17:56:59.000000000 -0500 | ||
| 8 | @@ -0,0 +1,24 @@ | ||
| 9 | +#ifndef __ASM_CPU_SH4_SIGCONTEXT_H | ||
| 10 | +#define __ASM_CPU_SH4_SIGCONTEXT_H | ||
| 11 | + | ||
| 12 | +struct sigcontext { | ||
| 13 | + unsigned long oldmask; | ||
| 14 | + | ||
| 15 | + /* CPU registers */ | ||
| 16 | + unsigned long sc_regs[16]; | ||
| 17 | + unsigned long sc_pc; | ||
| 18 | + unsigned long sc_pr; | ||
| 19 | + unsigned long sc_sr; | ||
| 20 | + unsigned long sc_gbr; | ||
| 21 | + unsigned long sc_mach; | ||
| 22 | + unsigned long sc_macl; | ||
| 23 | + | ||
| 24 | + /* FPU registers */ | ||
| 25 | + unsigned long sc_fpregs[16]; | ||
| 26 | + unsigned long sc_xfpregs[16]; | ||
| 27 | + unsigned int sc_fpscr; | ||
| 28 | + unsigned int sc_fpul; | ||
| 29 | + unsigned int sc_ownedfp; | ||
| 30 | +}; | ||
| 31 | + | ||
| 32 | +#endif /* __ASM_CPU_SH4_SIGCONTEXT_H */ | ||
| 33 | --- /dev/null 2004-06-02 16:28:12.000000000 -0500 | ||
| 34 | +++ linux-libc-headers-2.6.7.0/include/asm-sh/cpu-sh2/sigcontext.h 2004-08-27 17:57:54.000000000 -0500 | ||
| 35 | @@ -0,0 +1,17 @@ | ||
| 36 | +#ifndef __ASM_CPU_SH2_SIGCONTEXT_H | ||
| 37 | +#define __ASM_CPU_SH2_SIGCONTEXT_H | ||
| 38 | + | ||
| 39 | +struct sigcontext { | ||
| 40 | + unsigned long oldmask; | ||
| 41 | + | ||
| 42 | + /* CPU registers */ | ||
| 43 | + unsigned long sc_regs[16]; | ||
| 44 | + unsigned long sc_pc; | ||
| 45 | + unsigned long sc_pr; | ||
| 46 | + unsigned long sc_sr; | ||
| 47 | + unsigned long sc_gbr; | ||
| 48 | + unsigned long sc_mach; | ||
| 49 | + unsigned long sc_macl; | ||
| 50 | +}; | ||
| 51 | + | ||
| 52 | +#endif /* __ASM_CPU_SH2_SIGCONTEXT_H */ | ||
| 53 | --- /dev/null 2004-06-02 16:28:12.000000000 -0500 | ||
| 54 | +++ linux-libc-headers-2.6.7.0/include/asm-sh/cpu-sh3/sigcontext.h 2004-08-27 17:57:58.000000000 -0500 | ||
| 55 | @@ -0,0 +1,17 @@ | ||
| 56 | +#ifndef __ASM_CPU_SH3_SIGCONTEXT_H | ||
| 57 | +#define __ASM_CPU_SH3_SIGCONTEXT_H | ||
| 58 | + | ||
| 59 | +struct sigcontext { | ||
| 60 | + unsigned long oldmask; | ||
| 61 | + | ||
| 62 | + /* CPU registers */ | ||
| 63 | + unsigned long sc_regs[16]; | ||
| 64 | + unsigned long sc_pc; | ||
| 65 | + unsigned long sc_pr; | ||
| 66 | + unsigned long sc_sr; | ||
| 67 | + unsigned long sc_gbr; | ||
| 68 | + unsigned long sc_mach; | ||
| 69 | + unsigned long sc_macl; | ||
| 70 | +}; | ||
| 71 | + | ||
| 72 | +#endif /* __ASM_CPU_SH3_SIGCONTEXT_H */ | ||
diff --git a/openembedded/packages/linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-atomic-system.diff b/openembedded/packages/linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-atomic-system.diff new file mode 100644 index 0000000000..a06b5affd9 --- /dev/null +++ b/openembedded/packages/linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-atomic-system.diff | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | --- include/asm-mips/atomic.h.orig 2004-10-01 10:10:05.487734944 +0200 | ||
| 2 | +++ include/asm-mips/atomic.h 2004-10-01 10:10:15.837161592 +0200 | ||
| 3 | @@ -15,8 +15,6 @@ | ||
| 4 | #define _ASM_ATOMIC_H | ||
| 5 | |||
| 6 | |||
| 7 | -#include <asm/system.h> | ||
| 8 | - | ||
| 9 | typedef struct { volatile int counter; } atomic_t; | ||
| 10 | typedef struct { volatile __s64 counter; } atomic64_t; | ||
| 11 | |||
diff --git a/openembedded/packages/linux-libc-headers/linux-libc-headers_2.6.11.1.bb b/openembedded/packages/linux-libc-headers/linux-libc-headers_2.6.11.1.bb new file mode 100644 index 0000000000..c7d6367c7b --- /dev/null +++ b/openembedded/packages/linux-libc-headers/linux-libc-headers_2.6.11.1.bb | |||
| @@ -0,0 +1,64 @@ | |||
| 1 | SECTION = "devel" | ||
| 2 | DESCRIPTION = "Sanitized set of 2.6 kernel headers for the C library's use." | ||
| 3 | HOMEPAGE = "http://ep09.pld-linux.org/~mmazur/linux-libc-headers/" | ||
| 4 | # license note from the package: | ||
| 5 | # Linux-libc-headers are derived from linux kernel headers. For license of a | ||
| 6 | # particular header, check it's content, and if copyright notice isn't present, | ||
| 7 | # standard linux kernel license applies. | ||
| 8 | # since we assume GPL for linux i think we can also assume it here | ||
| 9 | LICENSE = "GPL" | ||
| 10 | MAINTAINER = "Chris Larson <kergoth@handhelds.org>" | ||
| 11 | INHIBIT_DEFAULT_DEPS = "1" | ||
| 12 | PR = "r1" | ||
| 13 | |||
| 14 | SRC_URI = "http://ep09.pld-linux.org/~mmazur/linux-libc-headers/linux-libc-headers-${PV}.tar.bz2 \ | ||
| 15 | file://keyboard.patch;patch=1" | ||
| 16 | |||
| 17 | S = "${WORKDIR}/linux-libc-headers-${PV}" | ||
| 18 | |||
| 19 | do_configure () { | ||
| 20 | case ${TARGET_ARCH} in | ||
| 21 | alpha*) ARCH=alpha ;; | ||
| 22 | arm*) ARCH=arm ;; | ||
| 23 | cris*) ARCH=cris ;; | ||
| 24 | hppa*) ARCH=parisc ;; | ||
| 25 | i*86*) ARCH=i386 ;; | ||
| 26 | ia64*) ARCH=ia64 ;; | ||
| 27 | mips*) ARCH=mips ;; | ||
| 28 | m68k*) ARCH=m68k ;; | ||
| 29 | powerpc*) ARCH=ppc ;; | ||
| 30 | s390*) ARCH=s390 ;; | ||
| 31 | sh*) ARCH=sh ;; | ||
| 32 | sparc64*) ARCH=sparc64 ;; | ||
| 33 | sparc*) ARCH=sparc ;; | ||
| 34 | x86_64*) ARCH=x86_64 ;; | ||
| 35 | esac | ||
| 36 | if test ! -e include/asm-$ARCH; then | ||
| 37 | oefatal unable to create asm symlink in kernel headers | ||
| 38 | fi | ||
| 39 | cp -a "include/asm-$ARCH" "include/asm" | ||
| 40 | if test "$ARCH" = "arm"; then | ||
| 41 | cp -a include/asm/arch-ebsa285 include/asm/arch | ||
| 42 | elif test "$ARCH" = "sh"; then | ||
| 43 | cp -a include/asm/cpu-${TARGET_ARCH} include/asm/cpu || die "unable to create include/asm/cpu" | ||
| 44 | fi | ||
| 45 | } | ||
| 46 | |||
| 47 | do_stage () { | ||
| 48 | install -d ${STAGING_INCDIR} | ||
| 49 | rm -rf ${STAGING_INCDIR}/linux ${STAGING_INCDIR}/asm | ||
| 50 | cp -pfLR include/linux ${STAGING_INCDIR}/ | ||
| 51 | cp -pfLR include/asm ${STAGING_INCDIR}/ | ||
| 52 | rm -rf ${CROSS_DIR}/${TARGET_SYS}/include/linux | ||
| 53 | rm -rf ${CROSS_DIR}/${TARGET_SYS}/include/asm | ||
| 54 | install -d ${CROSS_DIR}/${TARGET_SYS}/include | ||
| 55 | cp -pfLR include/linux ${CROSS_DIR}/${TARGET_SYS}/include/ | ||
| 56 | cp -pfLR include/asm ${CROSS_DIR}/${TARGET_SYS}/include/ | ||
| 57 | } | ||
| 58 | |||
| 59 | do_install() { | ||
| 60 | install -d ${D}${includedir} | ||
| 61 | cp -pfLR include/linux ${D}${includedir}/ | ||
| 62 | cp -pfLR include/asm ${D}${includedir}/ | ||
| 63 | } | ||
| 64 | |||
diff --git a/openembedded/packages/linux-libc-headers/linux-libc-headers_2.6.7.0.bb b/openembedded/packages/linux-libc-headers/linux-libc-headers_2.6.7.0.bb new file mode 100644 index 0000000000..f881d38a34 --- /dev/null +++ b/openembedded/packages/linux-libc-headers/linux-libc-headers_2.6.7.0.bb | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | SECTION = "devel" | ||
| 2 | DESCRIPTION = "Sanitized set of 2.6 kernel headers for the C library's use." | ||
| 3 | MAINTAINER = "Chris Larson <kergoth@handhelds.org>" | ||
| 4 | INHIBIT_DEFAULT_DEPS = "1" | ||
| 5 | PR = "r3" | ||
| 6 | LICENSE = "GPL" | ||
| 7 | # NOTE: no need to package these headers, since the c library includes them. | ||
| 8 | PACKAGES = "" | ||
| 9 | |||
| 10 | SRC_URI = "http://ep09.pld-linux.org/~mmazur/linux-libc-headers/linux-libc-headers-${PV}.tar.bz2 \ | ||
| 11 | file://sh-missing.patch;patch=1 \ | ||
| 12 | file://keyboard.patch;patch=1" | ||
| 13 | S = "${WORKDIR}/linux-libc-headers-${PV}" | ||
| 14 | |||
| 15 | do_configure () { | ||
| 16 | case ${TARGET_ARCH} in | ||
| 17 | alpha*) ARCH=alpha ;; | ||
| 18 | arm*) ARCH=arm ;; | ||
| 19 | cris*) ARCH=cris ;; | ||
| 20 | hppa*) ARCH=parisc ;; | ||
| 21 | i*86*) ARCH=i386 ;; | ||
| 22 | ia64*) ARCH=ia64 ;; | ||
| 23 | mips*) ARCH=mips ;; | ||
| 24 | m68k*) ARCH=m68k ;; | ||
| 25 | powerpc*) ARCH=ppc ;; | ||
| 26 | s390*) ARCH=s390 ;; | ||
| 27 | sh*) ARCH=sh ;; | ||
| 28 | sparc64*) ARCH=sparc64 ;; | ||
| 29 | sparc*) ARCH=sparc ;; | ||
| 30 | x86_64*) ARCH=x86_64 ;; | ||
| 31 | esac | ||
| 32 | if test ! -e include/asm-$ARCH; then | ||
| 33 | oefatal unable to create asm symlink in kernel headers | ||
| 34 | fi | ||
| 35 | cp -a "include/asm-$ARCH" "include/asm" | ||
| 36 | if test "$ARCH" = "arm"; then | ||
| 37 | cp -a include/asm/arch-ebsa285 include/asm/arch | ||
| 38 | elif test "$ARCH" = "sh"; then | ||
| 39 | cp -a include/asm/cpu-${TARGET_ARCH} include/asm/cpu || die "unable to create include/asm/cpu" | ||
| 40 | fi | ||
| 41 | } | ||
| 42 | |||
| 43 | do_stage () { | ||
| 44 | install -d ${STAGING_INCDIR} | ||
| 45 | rm -rf ${STAGING_INCDIR}/linux ${STAGING_INCDIR}/asm | ||
| 46 | cp -pfLR include/linux ${STAGING_INCDIR}/ | ||
| 47 | cp -pfLR include/asm ${STAGING_INCDIR}/ | ||
| 48 | rm -rf ${CROSS_DIR}/${TARGET_SYS}/include/linux | ||
| 49 | rm -rf ${CROSS_DIR}/${TARGET_SYS}/include/asm | ||
| 50 | install -d ${CROSS_DIR}/${TARGET_SYS}/include | ||
| 51 | cp -pfLR include/linux ${CROSS_DIR}/${TARGET_SYS}/include/ | ||
| 52 | cp -pfLR include/asm ${CROSS_DIR}/${TARGET_SYS}/include/ | ||
| 53 | |||
| 54 | ln -sf ${STAGING_KERNEL_DIR}/include/linux/wireless.h ${STAGING_INCDIR}/linux/wireless.h | ||
| 55 | ln -sf ${STAGING_KERNEL_DIR}/include/linux/wireless.h ${CROSS_DIR}/${TARGET_SYS}/include/linux/wireless.h | ||
| 56 | } | ||
diff --git a/openembedded/packages/linux-libc-headers/linux-libc-headers_2.6.8.1.bb b/openembedded/packages/linux-libc-headers/linux-libc-headers_2.6.8.1.bb new file mode 100644 index 0000000000..c127e8a9e7 --- /dev/null +++ b/openembedded/packages/linux-libc-headers/linux-libc-headers_2.6.8.1.bb | |||
| @@ -0,0 +1,61 @@ | |||
| 1 | SECTION = "devel" | ||
| 2 | DESCRIPTION = "Sanitized set of 2.6 kernel headers for the C library's use." | ||
| 3 | HOMEPAGE = "http://ep09.pld-linux.org/~mmazur/linux-libc-headers/" | ||
| 4 | # license note from the package: | ||
| 5 | # Linux-libc-headers are derived from linux kernel headers. For license of a | ||
| 6 | # particular header, check it's content, and if copyright notice isn't present, | ||
| 7 | # standard linux kernel license applies. | ||
| 8 | # since we assume GPL for linux i think we can also assume it here | ||
| 9 | LICENSE = "GPL" | ||
| 10 | MAINTAINER = "Chris Larson <kergoth@handhelds.org>" | ||
| 11 | INHIBIT_DEFAULT_DEPS = "1" | ||
| 12 | PR = "r7" | ||
| 13 | |||
| 14 | # NOTE: no need to package these headers, since the c library includes them. | ||
| 15 | PACKAGES = "" | ||
| 16 | |||
| 17 | SRC_URI = "http://ep09.pld-linux.org/~mmazur/linux-libc-headers/linux-libc-headers-${PV}.tar.bz2 \ | ||
| 18 | file://mips-asm-atomic-system.diff;patch=1;pnum=0 \ | ||
| 19 | file://keyboard.patch;patch=1" | ||
| 20 | |||
| 21 | S = "${WORKDIR}/linux-libc-headers-${PV}" | ||
| 22 | |||
| 23 | do_configure () { | ||
| 24 | case ${TARGET_ARCH} in | ||
| 25 | alpha*) ARCH=alpha ;; | ||
| 26 | arm*) ARCH=arm ;; | ||
| 27 | cris*) ARCH=cris ;; | ||
| 28 | hppa*) ARCH=parisc ;; | ||
| 29 | i*86*) ARCH=i386 ;; | ||
| 30 | ia64*) ARCH=ia64 ;; | ||
| 31 | mips*) ARCH=mips ;; | ||
| 32 | m68k*) ARCH=m68k ;; | ||
| 33 | powerpc*) ARCH=ppc ;; | ||
| 34 | s390*) ARCH=s390 ;; | ||
| 35 | sh*) ARCH=sh ;; | ||
| 36 | sparc64*) ARCH=sparc64 ;; | ||
| 37 | sparc*) ARCH=sparc ;; | ||
| 38 | x86_64*) ARCH=x86_64 ;; | ||
| 39 | esac | ||
| 40 | if test ! -e include/asm-$ARCH; then | ||
| 41 | oefatal unable to create asm symlink in kernel headers | ||
| 42 | fi | ||
| 43 | cp -a "include/asm-$ARCH" "include/asm" | ||
| 44 | if test "$ARCH" = "arm"; then | ||
| 45 | cp -a include/asm/arch-ebsa285 include/asm/arch | ||
| 46 | elif test "$ARCH" = "sh"; then | ||
| 47 | cp -a include/asm/cpu-${TARGET_ARCH} include/asm/cpu || die "unable to create include/asm/cpu" | ||
| 48 | fi | ||
| 49 | } | ||
| 50 | |||
| 51 | do_stage () { | ||
| 52 | install -d ${STAGING_INCDIR} | ||
| 53 | rm -rf ${STAGING_INCDIR}/linux ${STAGING_INCDIR}/asm | ||
| 54 | cp -pfLR include/linux ${STAGING_INCDIR}/ | ||
| 55 | cp -pfLR include/asm ${STAGING_INCDIR}/ | ||
| 56 | rm -rf ${CROSS_DIR}/${TARGET_SYS}/include/linux | ||
| 57 | rm -rf ${CROSS_DIR}/${TARGET_SYS}/include/asm | ||
| 58 | install -d ${CROSS_DIR}/${TARGET_SYS}/include | ||
| 59 | cp -pfLR include/linux ${CROSS_DIR}/${TARGET_SYS}/include/ | ||
| 60 | cp -pfLR include/asm ${CROSS_DIR}/${TARGET_SYS}/include/ | ||
| 61 | } | ||
