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

@@ -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/
}