summaryrefslogtreecommitdiff
path: root/meta/packages/linux-libc-headers/linux-libc-headers_csl-arm-2005q3-2.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-06-16 11:06:28 +0000
committerRichard Purdie <richard@openedhand.com>2008-06-16 11:06:28 +0000
commit25c0b9730827887e5da64332c89b8102ca6d7f6b (patch)
treef4f6b5ad802833b293efed9cfc106b035220f46c /meta/packages/linux-libc-headers/linux-libc-headers_csl-arm-2005q3-2.bb
parent018963dfac62c364cf5ed1ecdfe661141d32d5b7 (diff)
downloadopenembedded-core-25c0b9730827887e5da64332c89b8102ca6d7f6b.tar.gz
openembedded-core-25c0b9730827887e5da64332c89b8102ca6d7f6b.tar.bz2
openembedded-core-25c0b9730827887e5da64332c89b8102ca6d7f6b.tar.xz
openembedded-core-25c0b9730827887e5da64332c89b8102ca6d7f6b.zip
linux-libc-headers: Clear out old versions
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4667 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/linux-libc-headers/linux-libc-headers_csl-arm-2005q3-2.bb')
-rw-r--r--meta/packages/linux-libc-headers/linux-libc-headers_csl-arm-2005q3-2.bb81
1 files changed, 0 insertions, 81 deletions
diff --git a/meta/packages/linux-libc-headers/linux-libc-headers_csl-arm-2005q3-2.bb b/meta/packages/linux-libc-headers/linux-libc-headers_csl-arm-2005q3-2.bb
deleted file mode 100644
index ec8d9c7ab..000000000
--- a/meta/packages/linux-libc-headers/linux-libc-headers_csl-arm-2005q3-2.bb
+++ /dev/null
@@ -1,81 +0,0 @@
-SECTION = "devel"
-DESCRIPTION = "Sanitized set of 2.6 kernel headers for the C library's use."
-# This package is derived from the original linux-libc-headers at
-# http://ep09.pld-linux.org/~mmazur/linux-libc-headers/
-# More specifically, llh-2.6.12.0 was patched up to 2.6.16-rc6 with
-# the official linux patches (where applicable) and then fixed up just
-# enough to build glibc-2.4. BEWARE!
-#
-# license note from the linux-libc-headers package:
-# Linux-libc-headers are derived from linux kernel headers. For license of a
-# particular header, check it's content, and if copyright notice isn't present,
-# standard linux kernel license applies.
-# since we assume GPL for linux i think we can also assume it here
-LICENSE = "GPL"
-DEFAULT_PREFERENCE = "-1"
-INHIBIT_DEFAULT_DEPS = "1"
-PR = "r4"
-PV = "2.6.12rc3+csl-arm-2005q3-2"
-
-SRC_URI = "http://www.codesourcery.com/public/gnu_toolchain/arm-none-linux-gnueabi/arm-2005q3-2-arm-none-linux-gnueabi.src.tar.bz2"
-
-#unpack the inner tarball, extract the include directory and do little
-#cleanup
-do_unpack2() {
- cd ${WORKDIR}
- tar -xvjf ./arm-2005q3-2-arm-none-linux-gnueabi/linux-2005q3-2.tar.bz2
- mkdir -p linux-include
- mv ./linux-2.6.12rc3/include ./linux-include
- rm ./linux-include/include/asm-arm/arch
- rm -rf ./arm-2005q3-2-arm-none-linux-gnuabi
- rm -rf ./linux-2.6.12.rc3
-}
-
-addtask unpack2 after do_unpack before do_patch
-
-S = "${WORKDIR}/linux-include"
-
-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
- rm "include/asm"
- cp -pPR "include/asm-$ARCH" "include/asm"
- if test "$ARCH" = "arm"; then
- cp -pPR include/asm/arch-ebsa285 include/asm/arch
- elif test "$ARCH" = "sh"; then
- cp -pPR 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 ${STAGING_INCDIR}/asm-generic
- cp -pfLR include/linux ${STAGING_INCDIR}/
- cp -pfLR include/asm ${STAGING_INCDIR}/
- cp -pfLR include/asm-generic ${STAGING_INCDIR}/
-}
-
-do_install() {
- install -d ${D}${includedir}
- cp -pfLR include/linux ${D}${includedir}/
- cp -pfLR include/asm ${D}${includedir}/
- cp -pfLR include/asm-generic ${D}${includedir}/
-}
-