diff options
author | Graeme Gregory <dp@xora.org.uk> | 2009-09-15 10:49:50 +0100 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2009-09-15 10:49:50 +0100 |
commit | f111ae953c303d608d1b3b7c945a11c03e0a620e (patch) | |
tree | cafc0432a5d83862f4a4f7f4529ae9d76687fd81 /recipes/linux-libc-headers/linux-libc-headers_2.6.31.bb | |
parent | fbe1669439e632589ddf843137761aebb76f1549 (diff) |
linux-libc-headers_2.6.31.bb : add newest kernel headers, this has the
0001-implement-TIF_RESTORE_SIGMASK-support-and-enable-the.patch enabled
which is getting to be needed for udev.
DEF_PREF = -1 for now as I havent tested this properly yet
Diffstat (limited to 'recipes/linux-libc-headers/linux-libc-headers_2.6.31.bb')
-rw-r--r-- | recipes/linux-libc-headers/linux-libc-headers_2.6.31.bb | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/recipes/linux-libc-headers/linux-libc-headers_2.6.31.bb b/recipes/linux-libc-headers/linux-libc-headers_2.6.31.bb new file mode 100644 index 0000000000..33872e6f89 --- /dev/null +++ b/recipes/linux-libc-headers/linux-libc-headers_2.6.31.bb @@ -0,0 +1,51 @@ +require linux-libc-headers.inc + +INHIBIT_DEFAULT_DEPS = "1" +DEPENDS += "unifdef-native" +PR = "r0" + +DEFAULT_PREFERENCE = "-1" + +SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \ + file://0001-implement-TIF_RESTORE_SIGMASK-support-and-enable-the.patch;patch=1 \ + " +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 +} |