summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2014-03-31 13:56:29 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-31 23:04:35 +0100
commit3746a51f469bba3de921d9696aea672191f1ebbb (patch)
tree5e91fdb87013b90b5bf2b7e54c40bad8579eeedc
parent0906266cd3c71e782837ce80677d9e2e0732715b (diff)
downloadpoky-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>
-rw-r--r--meta/recipes-kernel/linux/linux-yocto-tiny_3.14.bb21
-rw-r--r--meta/recipes-kernel/linux/linux-yocto_3.14.bb37
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 @@
1require recipes-kernel/linux/linux-yocto.inc
2
3KBRANCH = "standard/tiny/base"
4LINUX_KERNEL_TYPE = "tiny"
5KCONFIG_MODE = "--allnoconfig"
6
7LINUX_VERSION ?= "3.14"
8
9KMETA = "meta"
10
11SRCREV_machine ?= "0143c6ebb4a2d63b241df5f608b19f483f7eb9e0"
12SRCREV_meta ?= "fc8c30398dbc3cdea787a1042242d4aab689d0ae"
13
14PV = "${LINUX_VERSION}+git${SRCPV}"
15
16SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.14.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta"
17
18COMPATIBLE_MACHINE = "(qemux86)"
19
20# Functionality flags
21KERNEL_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 @@
1require recipes-kernel/linux/linux-yocto.inc
2
3KBRANCH = "standard/base"
4
5# board specific branches
6KBRANCH_qemuarm = "standard/arm-versatile-926ejs"
7KBRANCH_qemumips = "standard/mti-malta32"
8KBRANCH_qemuppc = "standard/qemuppc"
9KBRANCH_qemux86 = "standard/common-pc/base"
10KBRANCH_qemux86-64 = "standard/common-pc-64/base"
11KBRANCH_qemumips64 = "standard/mti-malta64"
12
13SRCREV_machine_qemuarm ?= "c966987f88a0ee5753c3dee87e7a962d0cad5376"
14SRCREV_machine_qemumips ?= "61811c215c601ee96ccbf79333bbc73482b0f017"
15SRCREV_machine_qemuppc ?= "0d5cf5e938f4e6d3c6a398e98c8ece3ce05539f7"
16SRCREV_machine_qemux86 ?= "0143c6ebb4a2d63b241df5f608b19f483f7eb9e0"
17SRCREV_machine_qemux86-64 ?= "0143c6ebb4a2d63b241df5f608b19f483f7eb9e0"
18SRCREV_machine_qemumips64 ?= "ccb2a788551a7951563ac44a27175c6f28501008"
19SRCREV_machine ?= "0143c6ebb4a2d63b241df5f608b19f483f7eb9e0"
20SRCREV_meta ?= "fc8c30398dbc3cdea787a1042242d4aab689d0ae"
21
22SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.14.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
23
24LINUX_VERSION ?= "3.14"
25
26PV = "${LINUX_VERSION}+git${SRCPV}"
27
28KMETA = "meta"
29
30COMPATIBLE_MACHINE = "qemuarm|qemux86|qemuppc|qemumips|qemumips64|qemux86-64"
31
32# Functionality flags
33KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc"
34KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}"
35KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc"
36KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc"
37KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}"