diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-03-31 13:56:29 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-31 23:04:35 +0100 |
commit | 3746a51f469bba3de921d9696aea672191f1ebbb (patch) | |
tree | 5e91fdb87013b90b5bf2b7e54c40bad8579eeedc /meta/recipes-kernel | |
parent | 0906266cd3c71e782837ce80677d9e2e0732715b (diff) | |
download | poky-3746a51f469bba3de921d9696aea672191f1ebbb.tar.gz |
linux-yocto/3.14: introduce versioned recipes
The release kernel for Yocto 1.6 is the 3.14 kernel, so we introduce
the versioned recipes here.
(From OE-Core rev: 92776093766d4b0bb2613214274fa28dc59b6126)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb | 21 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_3.14.bb | 37 |
2 files changed, 58 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb new file mode 100644 index 0000000000..2e142bfd90 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | require recipes-kernel/linux/linux-yocto.inc | ||
2 | |||
3 | KBRANCH = "standard/tiny/base" | ||
4 | LINUX_KERNEL_TYPE = "tiny" | ||
5 | KCONFIG_MODE = "--allnoconfig" | ||
6 | |||
7 | LINUX_VERSION ?= "3.14" | ||
8 | |||
9 | KMETA = "meta" | ||
10 | |||
11 | SRCREV_machine ?= "0143c6ebb4a2d63b241df5f608b19f483f7eb9e0" | ||
12 | SRCREV_meta ?= "fc8c30398dbc3cdea787a1042242d4aab689d0ae" | ||
13 | |||
14 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
15 | |||
16 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.14.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta" | ||
17 | |||
18 | COMPATIBLE_MACHINE = "(qemux86)" | ||
19 | |||
20 | # Functionality flags | ||
21 | KERNEL_FEATURES = "" | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.14.bb b/meta/recipes-kernel/linux/linux-yocto_3.14.bb new file mode 100644 index 0000000000..d5202cd439 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto_3.14.bb | |||
@@ -0,0 +1,37 @@ | |||
1 | require recipes-kernel/linux/linux-yocto.inc | ||
2 | |||
3 | KBRANCH = "standard/base" | ||
4 | |||
5 | # board specific branches | ||
6 | KBRANCH_qemuarm = "standard/arm-versatile-926ejs" | ||
7 | KBRANCH_qemumips = "standard/mti-malta32" | ||
8 | KBRANCH_qemuppc = "standard/qemuppc" | ||
9 | KBRANCH_qemux86 = "standard/common-pc/base" | ||
10 | KBRANCH_qemux86-64 = "standard/common-pc-64/base" | ||
11 | KBRANCH_qemumips64 = "standard/mti-malta64" | ||
12 | |||
13 | SRCREV_machine_qemuarm ?= "c966987f88a0ee5753c3dee87e7a962d0cad5376" | ||
14 | SRCREV_machine_qemumips ?= "61811c215c601ee96ccbf79333bbc73482b0f017" | ||
15 | SRCREV_machine_qemuppc ?= "0d5cf5e938f4e6d3c6a398e98c8ece3ce05539f7" | ||
16 | SRCREV_machine_qemux86 ?= "0143c6ebb4a2d63b241df5f608b19f483f7eb9e0" | ||
17 | SRCREV_machine_qemux86-64 ?= "0143c6ebb4a2d63b241df5f608b19f483f7eb9e0" | ||
18 | SRCREV_machine_qemumips64 ?= "ccb2a788551a7951563ac44a27175c6f28501008" | ||
19 | SRCREV_machine ?= "0143c6ebb4a2d63b241df5f608b19f483f7eb9e0" | ||
20 | SRCREV_meta ?= "fc8c30398dbc3cdea787a1042242d4aab689d0ae" | ||
21 | |||
22 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.14.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta" | ||
23 | |||
24 | LINUX_VERSION ?= "3.14" | ||
25 | |||
26 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
27 | |||
28 | KMETA = "meta" | ||
29 | |||
30 | COMPATIBLE_MACHINE = "qemuarm|qemux86|qemuppc|qemumips|qemumips64|qemux86-64" | ||
31 | |||
32 | # Functionality flags | ||
33 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc" | ||
34 | KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}" | ||
35 | KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
36 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc" | ||
37 | KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}" | ||