diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2012-06-07 15:59:47 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-08 11:56:31 +0100 |
commit | d0402c6f588d6de5058352ba836025fdaa7f2b17 (patch) | |
tree | 2b5f52da2ed820a0f320a5a731e71d05cc7f2dd8 /meta | |
parent | 9cf85014444a55ecfd2bd794ff267f68fa216928 (diff) | |
download | poky-d0402c6f588d6de5058352ba836025fdaa7f2b17.tar.gz |
linux-yocto: add 3.4 recipe
Introducing the 3.4 kernel recipe. At this point there are three
supported kernel 3.4, 3.2 and 3.0.
Build and boot tested on qemux86, qemux86-64, qemuarm, qemumips and
qemuppc
(From OE-Core rev: f85c3f727fd326fe6dd2f2c2b68c692515867737)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_3.4.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.4.bb b/meta/recipes-kernel/linux/linux-yocto_3.4.bb new file mode 100644 index 0000000000..81816b15d2 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto_3.4.bb | |||
@@ -0,0 +1,38 @@ | |||
1 | inherit kernel | ||
2 | require recipes-kernel/linux/linux-yocto.inc | ||
3 | |||
4 | KBRANCH = "standard/base" | ||
5 | KBRANCH_qemux86 = "standard/common-pc/base" | ||
6 | KBRANCH_qemux86-64 = "standard/common-pc-64/base" | ||
7 | KBRANCH_qemuppc = "standard/qemuppc" | ||
8 | KBRANCH_qemumips = "standard/mti-malta32" | ||
9 | KBRANCH_qemumips64 = "standard/mti-malta64" | ||
10 | KBRANCH_qemumips64el = "standard/mti-malta64" | ||
11 | KBRANCH_qemuarm = "standard/arm-versatile-926ejs" | ||
12 | |||
13 | SRCREV_machine_qemuarm ?= "bc7dd2ebe7f5443fb9d89d46106053cfc69b5d7f" | ||
14 | SRCREV_machine_qemumips ?= "5a2ad0078de3d24a6e8e3f3c9a7426a08a86717d" | ||
15 | SRCREV_machine_qemuppc ?= "f92ab2a332627c0213ecfdfc873d470be008f86b" | ||
16 | SRCREV_machine_qemux86 ?= "780ab7e11f03931295e8f0e29707f2abb688e9ad" | ||
17 | SRCREV_machine_qemux86-64 ?= "780ab7e11f03931295e8f0e29707f2abb688e9ad" | ||
18 | SRCREV_machine ?= "780ab7e11f03931295e8f0e29707f2abb688e9ad" | ||
19 | SRCREV_meta ?= "3fd089debe624c642d7b4d9363f853021d1675b2" | ||
20 | |||
21 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta" | ||
22 | |||
23 | LINUX_VERSION ?= "3.4.1" | ||
24 | |||
25 | PR = "r0" | ||
26 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
27 | |||
28 | KMETA = "meta" | ||
29 | |||
30 | COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)" | ||
31 | |||
32 | # Functionality flags | ||
33 | KERNEL_REVISION_CHECKING="" | ||
34 | KERNEL_FEATURES="features/netfilter" | ||
35 | KERNEL_FEATURES_append_qemux86=" cfg/sound" | ||
36 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound" | ||
37 | |||
38 | require recipes-kernel/linux/linux-tools.inc | ||