aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/linux-libc-headers/linux-libc-headers_2.6.23.bb
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-03-08 15:30:38 -0700
committerChris Larson <chris_larson@mentor.com>2010-03-08 15:30:42 -0700
commit4eb51d8d2cb8b68fe411ead09e279652d9c0a73d (patch)
treeb489aca8c23563f5676bcbc13bdbc9117bfe65a1 /recipes/linux-libc-headers/linux-libc-headers_2.6.23.bb
parentc77f216ab2a518229795b4ee42f76372df93fe7c (diff)
downloadopenembedded-4eb51d8d2cb8b68fe411ead09e279652d9c0a73d.tar.gz
linux-libc-headers: kill unneeded do_stage functions
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'recipes/linux-libc-headers/linux-libc-headers_2.6.23.bb')
-rw-r--r--recipes/linux-libc-headers/linux-libc-headers_2.6.23.bb20
1 files changed, 1 insertions, 19 deletions
diff --git a/recipes/linux-libc-headers/linux-libc-headers_2.6.23.bb b/recipes/linux-libc-headers/linux-libc-headers_2.6.23.bb
index 95152f1b22..1ff38f0dd2 100644
--- a/recipes/linux-libc-headers/linux-libc-headers_2.6.23.bb
+++ b/recipes/linux-libc-headers/linux-libc-headers_2.6.23.bb
@@ -2,7 +2,7 @@ require linux-libc-headers.inc
INHIBIT_DEFAULT_DEPS = "1"
DEPENDS += "unifdef-native"
-PR = "r4"
+PR = "r5"
SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \
file://procinfo.h \
@@ -47,21 +47,3 @@ do_install() {
do_install_append_arm() {
cp ${WORKDIR}/procinfo.h ${D}${includedir}/asm/
}
-
-STAGE_TEMP="${WORKDIR}/temp-staging"
-
-do_stage () {
- set_arch
- echo $ARCH
- rm -rf ${STAGE_TEMP}
- mkdir -p ${STAGE_TEMP}
- oe_runmake headers_install INSTALL_HDR_PATH=${STAGE_TEMP}${exec_prefix} ARCH=$ARCH
- if [ "$ARCH" = "arm" ]; then
- cp ${WORKDIR}/procinfo.h ${STAGE_TEMP}${includedir}/asm/
- fi
- install -d ${STAGING_INCDIR}
- rm -rf ${STAGING_INCDIR}/linux ${STAGING_INCDIR}/asm ${STAGING_INCDIR}/asm-generic
- 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}/
-}