diff options
author | Phil Blundell <philb@gnu.org> | 2004-08-04 16:00:17 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-08-04 16:00:17 +0000 |
commit | 4fd9387eb67236a8dd4ef2e5ad597777d5960fca (patch) | |
tree | 2ef7049fc66493e9acd0c244237ddd0c1d421458 /linux-libc-headers/linux-libc-headers_2.6.7.0.oe | |
parent | 44fcfdfb40a59045d2366bf6f2b33d66745b3dce (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into stealth.(none):/home/pb/oe/oe-packages
2004/08/04 16:50:05+01:00 (none)!pb
blow away linux and asm trees before repopulating them, to avoid trouble with broken symlinks
BKrev: 41110811ECrIVBqdkNX0F4HZmslOaw
Diffstat (limited to 'linux-libc-headers/linux-libc-headers_2.6.7.0.oe')
-rw-r--r-- | linux-libc-headers/linux-libc-headers_2.6.7.0.oe | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/linux-libc-headers/linux-libc-headers_2.6.7.0.oe b/linux-libc-headers/linux-libc-headers_2.6.7.0.oe index e69de29bb2..d6d88bfaa2 100644 --- a/linux-libc-headers/linux-libc-headers_2.6.7.0.oe +++ b/linux-libc-headers/linux-libc-headers_2.6.7.0.oe @@ -0,0 +1,48 @@ +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 = "r1" + +# 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" +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 + 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}/ + install -d ${CROSS_DIR}/${TARGET_SYS}/include + rm -rf ${CROSS_DIR}/${TARGET_SYS}/include/linux + rm -rf ${CROSS_DIR}/${TARGET_SYS}/include/asm + cp -pfLR include/linux ${CROSS_DIR}/${TARGET_SYS}/include/ + cp -pfLR include/asm ${CROSS_DIR}/${TARGET_SYS}/include/ +} |