diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-07-21 11:21:07 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-25 14:41:44 +0100 |
commit | 3a4b0d63738d6e368d03ba0243d5b05484434b1f (patch) | |
tree | b875784bfdb827cf784d7316e624b00b70b9c386 /meta | |
parent | f7ee1c9839af657f42e10bbd2a5d4d647fcf2d94 (diff) | |
download | poky-3a4b0d63738d6e368d03ba0243d5b05484434b1f.tar.gz |
linux-yocto: introduce 4.1 versioned recipes
Updating the linux-yocto kernel recipes to include a named/versioned 4.1
recipe. This will be the LTSI kernel, and the 3.14 and 3.19 kernels will
be removed in subsequent commites (once reference boards have transitioned).
(From OE-Core rev: c027c1283e6444ab05f444eb5d292ec1a36b5821)
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-rt_4.1.bb | 26 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-tiny_4.1.bb | 23 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_4.1.bb | 41 |
3 files changed, 90 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_4.1.bb b/meta/recipes-kernel/linux/linux-yocto-rt_4.1.bb new file mode 100644 index 0000000000..1cefff8714 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-rt_4.1.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | KBRANCH ?= "standard/preempt-rt" | ||
2 | |||
3 | require recipes-kernel/linux/linux-yocto.inc | ||
4 | |||
5 | SRCREV_machine ?= "fe1ee443489d4ab5ce04c903b0362ae565547bd1" | ||
6 | SRCREV_meta ?= "45393dd54f5ad77d43014c407c2b3520da42f427" | ||
7 | |||
8 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-4.1.git;branch=${KBRANCH};name=machine \ | ||
9 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.1;destsuffix=${KMETA}" | ||
10 | |||
11 | LINUX_VERSION ?= "4.1.2" | ||
12 | |||
13 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
14 | |||
15 | KMETA = "kernel-meta" | ||
16 | KCONF_BSP_AUDIT_LEVEL = "2" | ||
17 | |||
18 | LINUX_KERNEL_TYPE = "preempt-rt" | ||
19 | |||
20 | COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuarm|qemuppc|qemumips)" | ||
21 | |||
22 | # Functionality flags | ||
23 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc" | ||
24 | KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}" | ||
25 | KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
26 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc" | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_4.1.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_4.1.bb new file mode 100644 index 0000000000..38167cc2e8 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_4.1.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | KBRANCH ?= "standard/tiny/base" | ||
2 | LINUX_KERNEL_TYPE = "tiny" | ||
3 | KCONFIG_MODE = "--allnoconfig" | ||
4 | |||
5 | require recipes-kernel/linux/linux-yocto.inc | ||
6 | |||
7 | LINUX_VERSION ?= "4.1.2" | ||
8 | |||
9 | KMETA = "kernel-meta" | ||
10 | KCONF_BSP_AUDIT_LEVEL = "2" | ||
11 | |||
12 | SRCREV_machine ?= "4e30e64c44df9e59bd13239951bb8d2b5b276e6f" | ||
13 | SRCREV_meta ?= "45393dd54f5ad77d43014c407c2b3520da42f427" | ||
14 | |||
15 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
16 | |||
17 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-4.1.git;branch=${KBRANCH};name=machine \ | ||
18 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.1;destsuffix=${KMETA}" | ||
19 | |||
20 | COMPATIBLE_MACHINE = "(qemux86)" | ||
21 | |||
22 | # Functionality flags | ||
23 | KERNEL_FEATURES = "" | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto_4.1.bb b/meta/recipes-kernel/linux/linux-yocto_4.1.bb new file mode 100644 index 0000000000..a7a52cb627 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto_4.1.bb | |||
@@ -0,0 +1,41 @@ | |||
1 | KBRANCH ?= "standard/base" | ||
2 | |||
3 | require recipes-kernel/linux/linux-yocto.inc | ||
4 | |||
5 | # board specific branches | ||
6 | KBRANCH_qemuarm ?= "standard/arm-versatile-926ejs" | ||
7 | KBRANCH_qemuarm64 ?= "standard/qemuarm64" | ||
8 | KBRANCH_qemumips ?= "standard/mti-malta32" | ||
9 | KBRANCH_qemuppc ?= "standard/qemuppc" | ||
10 | KBRANCH_qemux86 ?= "standard/base" | ||
11 | KBRANCH_qemux86-64 ?= "standard/base" | ||
12 | KBRANCH_qemumips64 ?= "standard/mti-malta64" | ||
13 | |||
14 | SRCREV_machine_qemuarm ?= "c4df99c91fc947afb7010a11eceeef0e05bf964f" | ||
15 | SRCREV_machine_qemuarm64 ?= "4e30e64c44df9e59bd13239951bb8d2b5b276e6f" | ||
16 | SRCREV_machine_qemumips ?= "6a24f7e60b9b2ecc1579f5f767be5845086533e1" | ||
17 | SRCREV_machine_qemuppc ?= "4e30e64c44df9e59bd13239951bb8d2b5b276e6f" | ||
18 | SRCREV_machine_qemux86 ?= "4e30e64c44df9e59bd13239951bb8d2b5b276e6f" | ||
19 | SRCREV_machine_qemux86-64 ?= "4e30e64c44df9e59bd13239951bb8d2b5b276e6f" | ||
20 | SRCREV_machine_qemumips64 ?= "5c2b3697082a4ec6641aa5a8eca3974ca609cecf" | ||
21 | SRCREV_machine ?= "4e30e64c44df9e59bd13239951bb8d2b5b276e6f" | ||
22 | SRCREV_meta ?= "45393dd54f5ad77d43014c407c2b3520da42f427" | ||
23 | |||
24 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-4.1.git;name=machine;branch=${KBRANCH}; \ | ||
25 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.1;destsuffix=${KMETA}" | ||
26 | |||
27 | LINUX_VERSION ?= "4.1.2" | ||
28 | |||
29 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
30 | |||
31 | KMETA = "kernel-meta" | ||
32 | KCONF_BSP_AUDIT_LEVEL = "2" | ||
33 | |||
34 | COMPATIBLE_MACHINE = "qemuarm|qemuarm64|qemux86|qemuppc|qemumips|qemumips64|qemux86-64" | ||
35 | |||
36 | # Functionality flags | ||
37 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc" | ||
38 | KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}" | ||
39 | KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
40 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
41 | KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}" | ||