mirror of
https://git.yoctoproject.org/poky
synced 2026-06-18 13:53:48 +02:00
Updating the linux-libc-headers-yocto recipe to 3.4. There are blocks of code and definitions that are handled by the included libc-headers.inc, so we shouldn't be repeating them in this recipe. (From meta-yocto rev: ad8456e013907c444d972ad945b8d6e96be1d4f0) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
854 B
BlitzBasic
36 lines
854 B
BlitzBasic
require recipes-kernel/linux-libc-headers/linux-libc-headers.inc
|
|
include recipes-kernel/linux/linux-yocto.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"
|
|
|
|
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"
|