diff options
Diffstat (limited to 'meta/packages/linux-libc-headers/linux-libc-headers_2.6.18+2.6.19-rc1.bb')
-rw-r--r-- | meta/packages/linux-libc-headers/linux-libc-headers_2.6.18+2.6.19-rc1.bb | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/meta/packages/linux-libc-headers/linux-libc-headers_2.6.18+2.6.19-rc1.bb b/meta/packages/linux-libc-headers/linux-libc-headers_2.6.18+2.6.19-rc1.bb deleted file mode 100644 index 7cb5c4aa2d..0000000000 --- a/meta/packages/linux-libc-headers/linux-libc-headers_2.6.18+2.6.19-rc1.bb +++ /dev/null | |||
@@ -1,58 +0,0 @@ | |||
1 | require linux-libc-headers.inc | ||
2 | |||
3 | DEFAULT_PREFERENCE = "-1" | ||
4 | INHIBIT_DEFAULT_DEPS = "1" | ||
5 | PR = "r2" | ||
6 | |||
7 | SRC_URI = " \ | ||
8 | ${KERNELORG_MIRROR}/pub/linux/kernel/people/dwmw2/kernel-headers/snapshot/linux-kernel-headers-2.6.19-rc1.tar.bz2 \ | ||
9 | file://arm-procinfo-hwcap.patch;patch=1 \ | ||
10 | file://arm-unistd-syscall.patch;patch=1 \ | ||
11 | file://linux-err.patch;patch=1 \ | ||
12 | " | ||
13 | |||
14 | S = "${WORKDIR}/linux-2.6.19-rc1" | ||
15 | |||
16 | set_arch() { | ||
17 | case ${TARGET_ARCH} in | ||
18 | alpha*) ARCH=alpha ;; | ||
19 | arm*) ARCH=arm ;; | ||
20 | cris*) ARCH=cris ;; | ||
21 | hppa*) ARCH=parisc ;; | ||
22 | i*86*) ARCH=i386 ;; | ||
23 | ia64*) ARCH=ia64 ;; | ||
24 | mips*) ARCH=mips ;; | ||
25 | m68k*) ARCH=m68k ;; | ||
26 | powerpc*) ARCH=powerpc ;; | ||
27 | s390*) ARCH=s390 ;; | ||
28 | sh*) ARCH=sh ;; | ||
29 | sparc64*) ARCH=sparc64 ;; | ||
30 | sparc*) ARCH=sparc ;; | ||
31 | x86_64*) ARCH=x86_64 ;; | ||
32 | esac | ||
33 | } | ||
34 | |||
35 | do_install() { | ||
36 | set_arch | ||
37 | install -d ${D}${includedir} | ||
38 | cp -pfLR ${S}${includedir}/linux ${D}${includedir}/ | ||
39 | cp -pfLR ${S}${includedir}/asm-${ARCH} ${D}${includedir}/asm | ||
40 | cp -pfLR ${S}${includedir}/asm-generic ${D}${includedir}/ | ||
41 | } | ||
42 | |||
43 | do_stage () { | ||
44 | set_arch | ||
45 | install -d ${STAGING_INCDIR} | ||
46 | rm -rf ${STAGING_INCDIR}/linux ${STAGING_INCDIR}/asm ${STAGING_INCDIR}/asm-generic | ||
47 | cp -pfLR ${S}${includedir}/linux ${STAGING_INCDIR}/ | ||
48 | cp -pfLR ${S}${includedir}/asm-${ARCH} ${STAGING_INCDIR}/asm | ||
49 | cp -pfLR ${S}${includedir}/asm-generic ${STAGING_INCDIR}/ | ||
50 | } | ||
51 | |||
52 | do_stage_append_nylon () { | ||
53 | cp -pPR include/asm-${ARCH}/* ${STAGING_INCDIR}/asm/ | ||
54 | cp -pPR include/asm-${ARCH}/* ${CROSS_DIR}/${TARGET_SYS}/include/asm/ | ||
55 | cp -pPR include/linux/* ${STAGING_INCDIR}/linux/ | ||
56 | cp -pPR include/linux/* ${CROSS_DIR}/${TARGET_SYS}/include/linux/ | ||
57 | } | ||
58 | |||