summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2012-03-23 13:07:48 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-23 17:38:33 +0000
commite86605c69c66a047b60c2ee0638d71ca46dadf24 (patch)
treeea55de2f15df803f6182498224056d0f5c53279f
parent12cd3311f53308028f55385d575b5bdff16a26be (diff)
downloadpoky-e86605c69c66a047b60c2ee0638d71ca46dadf24.tar.gz
linux-libc-headers-yocto: remove from oe-core
The linux-libc-headers-yocto is not required in oe-core, it can be moved to yocto specific layers. The linux-libc-headers_* recipes provide sufficient headers fore core users. (From OE-Core rev: 6320041fa77514e2d2bf54f0ea6c7052d2a4a89a) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb64
1 files changed, 0 insertions, 64 deletions
diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb
deleted file mode 100644
index 7aa932224f..0000000000
--- a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb
+++ /dev/null
@@ -1,64 +0,0 @@
1require linux-libc-headers.inc
2include recipes-kernel/linux/linux-yocto.inc
3
4B = "${S}"
5
6INHIBIT_DEFAULT_DEPS = "1"
7DEPENDS += "unifdef-native"
8PROVIDES = "linux-libc-headers"
9RPROVIDES_${PN}-dev = "linux-libc-headers-dev"
10RPROVIDES_${PN}-dbg = "linux-libc-headers-dbg"
11SRCREV = "21ab5dca134a6bf1316aa59f69f9ee9e091d5702"
12KBRANCH ?= "standard/base"
13KMETA ?= "meta"
14PV = "3.2+git-${SRCPV}"
15PR = "r5"
16
17SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.2;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
18
19# force this to empty to prevent installation failures, we aren't
20# building a device tree as part of kern headers
21KERNEL_DEVICETREE = ""
22
23set_arch() {
24 case ${TARGET_ARCH} in
25 arm*) ARCH=arm ;;
26 i*86*) ARCH=i386 ;;
27 ia64*) ARCH=ia64 ;;
28 mips*) ARCH=mips ;;
29 powerpc*) ARCH=powerpc ;;
30 x86_64*) ARCH=x86_64 ;;
31 esac
32}
33
34do_configure() {
35 set_arch
36 oe_runmake allnoconfig ARCH=$ARCH
37}
38
39do_install() {
40 set_arch
41 oe_runmake headers_install INSTALL_HDR_PATH=${D}${exec_prefix} ARCH=$ARCH
42
43 # The ..install.cmd conflicts between various configure runs
44 find ${D}${includedir} -name ..install.cmd | xargs rm -f
45}
46
47# The following tasks are not required when we just want
48# headers. So we override and stub them out.
49do_kernel_configme() {
50}
51
52do_patch () {
53}
54
55do_compile () {
56}
57
58do_validate_branches () {
59}
60
61do_kernel_configcheck () {
62}
63
64BBCLASSEXTEND = "nativesdk"