linux-libc-headers: provide 3.0.x and 3.1 headers

Provide both a 3.0.x and a 3.1 set of headers to the toolchain.
Compatibility is maintained with older 2.6 headers by creating a
new variable that changes the SRC_URI based on the major version
number of the kernel.

Built and booted with 2.6.37.2, 3.0.8 and 3.1 linux-libc-headers.

(From OE-Core rev: 13c233ce4551542481d7a6390ff2119671137b95)

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Bruce Ashfield 2011-10-27 10:32:48 -04:00 committed by Richard Purdie
parent e422bb1bc5
commit eedae071c7
4 changed files with 28 additions and 5 deletions

View File

@ -21,7 +21,7 @@ SDKGCCVERSION ?= "4.6%"
BINUVERSION ?= "2.21.1a"
EGLIBCVERSION ?= "2.13"
UCLIBCVERSION ?= "0.9.32"
LINUXLIBCVERSION ?= "2.6.37.2"
LINUXLIBCVERSION ?= "3.1"
# Temporary preferred version overrides for PPC
PREFERRED_VERSION_u-boot-mkimage-native_powerpc ?= "2009.08"

View File

@ -1,9 +1,18 @@
DESCRIPTION = "Sanitized set of 2.6 kernel headers for the C library's use."
DESCRIPTION = "Sanitized set of kernel headers for the C library's use."
SECTION = "devel"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
SRC_URI = "${KERNELORG_MIRROR}/linux/kernel/v2.6/linux-${PV}.tar.bz2"
LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
python __anonymous () {
major = d.getVar("PV",True).split('.')[0]
if major == "3":
d.setVar("HEADER_FETCH_VER", "3.0")
else:
d.setVar("HEADER_FETCH_VER", "2.6")
}
SRC_URI = "${KERNELORG_MIRROR}/linux/kernel/v${HEADER_FETCH_VER}/linux-${PV}.tar.bz2"
S = "${WORKDIR}/linux-${PV}"
@ -54,4 +63,4 @@ RDEPENDS_${PN}-dev = ""
RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
INHIBIT_DEFAULT_DEPS = "1"
DEPENDS += "unifdef-native"
DEPENDS += "unifdef-native"

View File

@ -0,0 +1,7 @@
require linux-libc-headers.inc
PR = "r1"
SRC_URI += " file://connector-msg-size-fix.patch"
SRC_URI[md5sum] = "eac4d398a0ecd98214487cd47a228998"
SRC_URI[sha256sum] = "4ed16da319848f681f711dbda2ac2cf1b306a280ec22f90bae190cf23b533add"

View File

@ -0,0 +1,7 @@
require linux-libc-headers.inc
PR = "r1"
SRC_URI += " file://connector-msg-size-fix.patch"
SRC_URI[md5sum] = "8d43453f8159b2332ad410b19d86a931"
SRC_URI[sha256sum] = "2573d2378c754b0c602b57586e9311e5b38c5d1e6c137f02873833633a4b9359"