diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2011-10-27 10:32:48 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-01 17:43:58 +0000 |
commit | eedae071c79a9298afbf08a8d17f8fc480e0e34e (patch) | |
tree | 53d63ec50b6a932cde683dff4a16013dd50bcd85 /meta/recipes-kernel/linux-libc-headers | |
parent | e422bb1bc5d4fe6fea78fd1f45e84f3d83b916d5 (diff) | |
download | poky-eedae071c79a9298afbf08a8d17f8fc480e0e34e.tar.gz |
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>
Diffstat (limited to 'meta/recipes-kernel/linux-libc-headers')
3 files changed, 27 insertions, 4 deletions
diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc index e586ac301e..4137be1a45 100644 --- a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc +++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc | |||
@@ -1,9 +1,18 @@ | |||
1 | DESCRIPTION = "Sanitized set of 2.6 kernel headers for the C library's use." | 1 | DESCRIPTION = "Sanitized set of kernel headers for the C library's use." |
2 | SECTION = "devel" | 2 | SECTION = "devel" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | 4 | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" |
6 | SRC_URI = "${KERNELORG_MIRROR}/linux/kernel/v2.6/linux-${PV}.tar.bz2" | 6 | |
7 | python __anonymous () { | ||
8 | major = d.getVar("PV",True).split('.')[0] | ||
9 | if major == "3": | ||
10 | d.setVar("HEADER_FETCH_VER", "3.0") | ||
11 | else: | ||
12 | d.setVar("HEADER_FETCH_VER", "2.6") | ||
13 | } | ||
14 | |||
15 | SRC_URI = "${KERNELORG_MIRROR}/linux/kernel/v${HEADER_FETCH_VER}/linux-${PV}.tar.bz2" | ||
7 | 16 | ||
8 | S = "${WORKDIR}/linux-${PV}" | 17 | S = "${WORKDIR}/linux-${PV}" |
9 | 18 | ||
@@ -54,4 +63,4 @@ RDEPENDS_${PN}-dev = "" | |||
54 | RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" | 63 | RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" |
55 | 64 | ||
56 | INHIBIT_DEFAULT_DEPS = "1" | 65 | INHIBIT_DEFAULT_DEPS = "1" |
57 | DEPENDS += "unifdef-native" \ No newline at end of file | 66 | DEPENDS += "unifdef-native" |
diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_3.0.8.bb b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_3.0.8.bb new file mode 100644 index 0000000000..7bb589550b --- /dev/null +++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_3.0.8.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require linux-libc-headers.inc | ||
2 | |||
3 | PR = "r1" | ||
4 | |||
5 | SRC_URI += " file://connector-msg-size-fix.patch" | ||
6 | SRC_URI[md5sum] = "eac4d398a0ecd98214487cd47a228998" | ||
7 | SRC_URI[sha256sum] = "4ed16da319848f681f711dbda2ac2cf1b306a280ec22f90bae190cf23b533add" | ||
diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_3.1.bb b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_3.1.bb new file mode 100644 index 0000000000..b87ecde0f8 --- /dev/null +++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_3.1.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require linux-libc-headers.inc | ||
2 | |||
3 | PR = "r1" | ||
4 | |||
5 | SRC_URI += " file://connector-msg-size-fix.patch" | ||
6 | SRC_URI[md5sum] = "8d43453f8159b2332ad410b19d86a931" | ||
7 | SRC_URI[sha256sum] = "2573d2378c754b0c602b57586e9311e5b38c5d1e6c137f02873833633a4b9359" | ||