aboutsummaryrefslogtreecommitdiffstats
path: root/linux-libc-headers
diff options
context:
space:
mode:
authorBruno Randolf <br1@subnet.at>2004-10-01 16:22:55 +0000
committerBruno Randolf <br1@subnet.at>2004-10-01 16:22:55 +0000
commit4c1c43c4c107e0770be7ddb18378aacadc578717 (patch)
tree9d17d482954601ffa67cec64c7fa48323bbbcb22 /linux-libc-headers
parent903d65b2f67a60eb01420bce896fdbcc1dc6318c (diff)
downloadopenembedded-4c1c43c4c107e0770be7ddb18378aacadc578717.tar.gz
Merge bk://openembedded@openembedded.bkbits.net/packages
into null.(none):/data/mtx/oe/oe.write/packages 2004/10/01 18:20:45+02:00 (none)!br1 linux-libc-headers: a better fix for mipsel include problems 2004/10/01 18:18:25+02:00 (none)!br1 mtx-1 and nylon updates 2004/10/01 18:14:35+02:00 (none)!br1 some initscripts fixes BKrev: 415d845fhRK74UgeJN_R5X4UKLTUKQ
Diffstat (limited to 'linux-libc-headers')
-rw-r--r--linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-atomic-system.diff (renamed from linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-addrspace-spaces.diff)0
-rw-r--r--linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-system-linkage.diff0
-rw-r--r--linux-libc-headers/linux-libc-headers_2.6.8.1.oe55
3 files changed, 55 insertions, 0 deletions
diff --git a/linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-addrspace-spaces.diff b/linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-atomic-system.diff
index e69de29bb2..e69de29bb2 100644
--- a/linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-addrspace-spaces.diff
+++ b/linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-atomic-system.diff
diff --git a/linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-system-linkage.diff b/linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-system-linkage.diff
deleted file mode 100644
index e69de29bb2..0000000000
--- a/linux-libc-headers/linux-libc-headers-2.6.8.1/mips-asm-system-linkage.diff
+++ /dev/null
diff --git a/linux-libc-headers/linux-libc-headers_2.6.8.1.oe b/linux-libc-headers/linux-libc-headers_2.6.8.1.oe
index e69de29bb2..9cfb7ce699 100644
--- a/linux-libc-headers/linux-libc-headers_2.6.8.1.oe
+++ b/linux-libc-headers/linux-libc-headers_2.6.8.1.oe
@@ -0,0 +1,55 @@
+DESCRIPTION = "Sanitized set of 2.6 kernel headers for the C library's use."
+MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
+INHIBIT_DEFAULT_DEPS = "1"
+PR = "r3"
+
+# NOTE: no need to package these headers, since the c library includes them.
+PACKAGES = ""
+
+SRC_URI = "http://ep09.pld-linux.org/~mmazur/linux-libc-headers/linux-libc-headers-${PV}.tar.bz2 \
+ file://mips-asm-atomic-system.diff;patch=1;pnum=0"
+
+S = "${WORKDIR}/linux-libc-headers-${PV}"
+
+do_configure () {
+ case ${TARGET_ARCH} in
+ alpha*) ARCH=alpha ;;
+ arm*) ARCH=arm ;;
+ cris*) ARCH=cris ;;
+ hppa*) ARCH=parisc ;;
+ i*86*) ARCH=i386 ;;
+ ia64*) ARCH=ia64 ;;
+ mips*) ARCH=mips ;;
+ m68k*) ARCH=m68k ;;
+ powerpc*) ARCH=ppc ;;
+ s390*) ARCH=s390 ;;
+ sh*) ARCH=sh ;;
+ sparc64*) ARCH=sparc64 ;;
+ sparc*) ARCH=sparc ;;
+ x86_64*) ARCH=x86_64 ;;
+ esac
+ if test ! -e include/asm-$ARCH; then
+ oefatal unable to create asm symlink in kernel headers
+ fi
+ cp -a "include/asm-$ARCH" "include/asm"
+ if test "$ARCH" = "arm"; then
+ cp -a include/asm/arch-ebsa285 include/asm/arch
+ elif test "$ARCH" = "sh"; then
+ cp -a include/asm/cpu-${TARGET_ARCH} include/asm/cpu || die "unable to create include/asm/cpu"
+ fi
+}
+
+do_stage () {
+ install -d ${STAGING_INCDIR}
+ rm -rf ${STAGING_INCDIR}/linux ${STAGING_INCDIR}/asm
+ cp -pfLR include/linux ${STAGING_INCDIR}/
+ cp -pfLR include/asm ${STAGING_INCDIR}/
+ rm -rf ${CROSS_DIR}/${TARGET_SYS}/include/linux
+ rm -rf ${CROSS_DIR}/${TARGET_SYS}/include/asm
+ install -d ${CROSS_DIR}/${TARGET_SYS}/include
+ cp -pfLR include/linux ${CROSS_DIR}/${TARGET_SYS}/include/
+ cp -pfLR include/asm ${CROSS_DIR}/${TARGET_SYS}/include/
+
+ ln -sf ${STAGING_KERNEL_DIR}/include/linux/wireless.h ${STAGING_INCDIR}/linux/wireless.h
+ ln -sf ${STAGING_KERNEL_DIR}/include/linux/wireless.h ${CROSS_DIR}/${TARGET_SYS}/include/linux/wireless.h
+}