linux-libc-headers: sync with OE (mainly safer use of and blackfin support)

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3002 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz 2007-10-26 12:12:24 +00:00
parent a975511d0d
commit 1bdfb7b626
5 changed files with 39 additions and 17 deletions

View File

@ -1,12 +1,11 @@
SECTION = "devel"
DESCRIPTION = "Sanitized set of 2.6 kernel headers for the C library's use."
require linux-libc-headers.inc
HOMEPAGE = "http://ep09.pld-linux.org/~mmazur/linux-libc-headers/"
# license note from the package:
# license note from the 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.
# standard linux kernel license applies.
# since we assume GPL for linux i think we can also assume it here
LICENSE = "GPL"
INHIBIT_DEFAULT_DEPS = "1"
PR = "r2"

View File

@ -1,17 +1,16 @@
SECTION = "devel"
DESCRIPTION = "Sanitized set of 2.6 kernel headers for the C library's use."
require linux-libc-headers.inc
# 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
# 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:
# 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.
# 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"

View File

@ -36,7 +36,7 @@ do_install() {
set_arch
install -d ${D}${includedir}
cp -pfLR ${S}${includedir}/linux ${D}${includedir}/
cp -pfLR ${S}${includedir}/asm-$ARCH ${D}${includedir}/asm
cp -pfLR ${S}${includedir}/asm-${ARCH} ${D}${includedir}/asm
cp -pfLR ${S}${includedir}/asm-generic ${D}${includedir}/
}
@ -45,6 +45,14 @@ do_stage () {
install -d ${STAGING_INCDIR}
rm -rf ${STAGING_INCDIR}/linux ${STAGING_INCDIR}/asm ${STAGING_INCDIR}/asm-generic
cp -pfLR ${S}${includedir}/linux ${STAGING_INCDIR}/
cp -pfLR ${S}${includedir}/asm-$ARCH ${STAGING_INCDIR}/asm
cp -pfLR ${S}${includedir}/asm-${ARCH} ${STAGING_INCDIR}/asm
cp -pfLR ${S}${includedir}/asm-generic ${STAGING_INCDIR}/
}
do_stage_append_nylon () {
cp -pPR include/asm-${ARCH}/* ${STAGING_INCDIR}/asm/
cp -pPR include/asm-${ARCH}/* ${CROSS_DIR}/${TARGET_SYS}/include/asm/
cp -pPR include/linux/* ${STAGING_INCDIR}/linux/
cp -pPR include/linux/* ${CROSS_DIR}/${TARGET_SYS}/include/linux/
}

View File

@ -30,7 +30,7 @@ set_arch() {
do_configure() {
set_arch
oe_runmake allnoconfig ARCH=$ARCH
oe_runmake allnoconfig ARCH=${ARCH}
}
do_compile () {
@ -38,7 +38,7 @@ do_compile () {
do_install() {
set_arch
oe_runmake headers_install INSTALL_HDR_PATH=${D}/usr ARCH=$ARCH
oe_runmake headers_install INSTALL_HDR_PATH=${D}/usr ARCH=${ARCH}
}
do_install_append_arm() {
@ -51,8 +51,8 @@ do_stage () {
set_arch
rm -rf ${STAGE_TEMP}
mkdir -p ${STAGE_TEMP}
oe_runmake headers_install INSTALL_HDR_PATH=${STAGE_TEMP}/usr ARCH=$ARCH
if [ "$ARCH" = "arm" ]; then
oe_runmake headers_install INSTALL_HDR_PATH=${STAGE_TEMP}/usr ARCH=${ARCH}
if [ "${ARCH}" == "arm" ]; then
cp include/asm-arm/procinfo.h ${STAGE_TEMP}${includedir}/asm
fi
install -d ${STAGING_INCDIR}
@ -60,4 +60,18 @@ do_stage () {
cp -pfLR ${STAGE_TEMP}${includedir}/linux ${STAGING_INCDIR}/
cp -pfLR ${STAGE_TEMP}${includedir}/asm ${STAGING_INCDIR}/
cp -pfLR ${STAGE_TEMP}${includedir}/asm-generic ${STAGING_INCDIR}/
# Add UTS_RELEASE to version.h. UTS_RELEASE was moved from version.h to
# utsrelease.h in order to avoid recompiling a kernel every time a localversion
# changed. Since the our headers are static and we're not compiling an
# actual kernel, re-adding UTS_RELEASE does't hurt, and it allows uclibc to
# compile with kernel headers that work with EABI on ARM
echo '#define UTS_RELEASE "2.6.18"' >> ${STAGING_INCDIR}/linux/version.h
}
do_stage_append_nylon () {
cp -pPR include/asm-${ARCH}/* ${STAGING_INCDIR}/asm/
cp -pPR include/asm-${ARCH}/* ${CROSS_DIR}/${TARGET_SYS}/include/asm/
cp -pPR include/linux/* ${STAGING_INCDIR}/linux/
cp -pPR include/linux/* ${CROSS_DIR}/${TARGET_SYS}/include/linux/
}

View File

@ -25,6 +25,8 @@ set_arch() {
sparc64*) ARCH=sparc64 ;;
sparc*) ARCH=sparc ;;
x86_64*) ARCH=x86_64 ;;
avr32*) ARCH=avr32 ;;
bfin*) ARCH=blackfin ;;
esac
}