From a1eb811d0b29ace98d74c2e5f500fc167c059c81 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 24 Mar 2009 14:09:21 -0700 Subject: linux-libc-headers_2.6.29.bb: Add 2.6.29 kernel headers recipe. This kernel headers recipe has few changes compared to old ones. We do not export procinfo.h manually anymore we need to fix the packages which use it to use hwcap.h instead or use something of there own. glibc/arm was one package that relied on it in past but it has been fixed since. If we need to patch glibc then we should backport the patch to 2.6.1 --- .../linux-libc-headers_2.6.29.bb | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 recipes/linux-libc-headers/linux-libc-headers_2.6.29.bb (limited to 'recipes') diff --git a/recipes/linux-libc-headers/linux-libc-headers_2.6.29.bb b/recipes/linux-libc-headers/linux-libc-headers_2.6.29.bb new file mode 100644 index 0000000000..6caddc0c2f --- /dev/null +++ b/recipes/linux-libc-headers/linux-libc-headers_2.6.29.bb @@ -0,0 +1,49 @@ +require linux-libc-headers.inc + +INHIBIT_DEFAULT_DEPS = "1" +DEPENDS += "unifdef-native" +PR = "r0" + +SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \ + " + +S = "${WORKDIR}/linux-${PV}" + +set_arch() { + 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=powerpc ;; + s390*) ARCH=s390 ;; + sh*) ARCH=sh ;; + sparc64*) ARCH=sparc64 ;; + sparc*) ARCH=sparc ;; + x86_64*) ARCH=x86_64 ;; + avr32*) ARCH=avr32 ;; + bfin*) ARCH=blackfin ;; + esac +} + +do_configure() { + set_arch + oe_runmake allnoconfig ARCH=$ARCH +} + +do_compile () { +} + +do_install() { + set_arch + oe_runmake headers_install INSTALL_HDR_PATH=${D}${exec_prefix} ARCH=$ARCH +} + +do_stage () { + set_arch + oe_runmake headers_install INSTALL_HDR_PATH=${STAGING_DIR_HOST}${layout_prefix} ARCH=$ARCH +} -- cgit v1.2.3