diff options
4 files changed, 28 insertions, 5 deletions
diff --git a/meta/conf/distro/include/tcmode-default.inc b/meta/conf/distro/include/tcmode-default.inc index 2bf1beb0a8..ed722be811 100644 --- a/meta/conf/distro/include/tcmode-default.inc +++ b/meta/conf/distro/include/tcmode-default.inc | |||
@@ -21,7 +21,7 @@ SDKGCCVERSION ?= "4.6%" | |||
21 | BINUVERSION ?= "2.21.1a" | 21 | BINUVERSION ?= "2.21.1a" |
22 | EGLIBCVERSION ?= "2.13" | 22 | EGLIBCVERSION ?= "2.13" |
23 | UCLIBCVERSION ?= "0.9.32" | 23 | UCLIBCVERSION ?= "0.9.32" |
24 | LINUXLIBCVERSION ?= "2.6.37.2" | 24 | LINUXLIBCVERSION ?= "3.1" |
25 | 25 | ||
26 | # Temporary preferred version overrides for PPC | 26 | # Temporary preferred version overrides for PPC |
27 | PREFERRED_VERSION_u-boot-mkimage-native_powerpc ?= "2009.08" | 27 | PREFERRED_VERSION_u-boot-mkimage-native_powerpc ?= "2009.08" |
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" | ||