blob: 8ab4fb18d942926b9c58e481320fc7a3ba5b8642 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
require recipes-kernel/linux-libc-headers/linux-libc-headers.inc
B = "${S}"
PROVIDES = "linux-libc-headers"
RPROVIDES_${PN}-dev = "linux-libc-headers-dev"
RPROVIDES_${PN}-dbg = "linux-libc-headers-dbg"
KBRANCH = "standard/base"
SRCREV = "a1cdb60720c452c3965eaec3ec2cd10f06261cc5"
PV = "3.4+git-${SRCPV}"
PR = "r6"
SRCREV_FORMAT ?= "meta_machine"
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta"
# force this to empty to prevent installation failures, we aren't
# building a device tree as part of kern headers
KERNEL_DEVICETREE = ""
inherit kernel-arch
# The following tasks are not required when we just want
# headers. So we override and stub them out.
do_kernel_configme() {
}
do_patch () {
}
do_kernel_configcheck () {
}
BBCLASSEXTEND = "nativesdk"
|