diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-09-08 00:21:21 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-10 15:19:58 +0100 |
commit | 07315861450ebf3cd224f4700eb125b74057aa0f (patch) | |
tree | a30fce5f4eb4d72a47031f13df4b3f5b9604e32f /meta/recipes-kernel | |
parent | 9f204a02f07f8e378e8a078db103a6ba94ec55cb (diff) | |
download | openembedded-core-07315861450ebf3cd224f4700eb125b74057aa0f.tar.gz openembedded-core-07315861450ebf3cd224f4700eb125b74057aa0f.tar.bz2 openembedded-core-07315861450ebf3cd224f4700eb125b74057aa0f.zip |
linux-yocto: introduce v3.17
With this commit, we introduce the v3.17-rcX kernels, which will be
released as part of the 1.7 yocto project.
All architectures have been compiled and booted with this revision
of the kernel.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb | 21 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_3.17.bb | 37 |
2 files changed, 58 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb new file mode 100644 index 0000000000..c1cb47ba90 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.17.bb @@ -0,0 +1,21 @@ +KBRANCH ?= "standard/tiny/base" +LINUX_KERNEL_TYPE = "tiny" +KCONFIG_MODE = "--allnoconfig" + +require recipes-kernel/linux/linux-yocto.inc + +LINUX_VERSION ?= "3.17-rc4" + +KMETA = "meta" + +SRCREV_machine ?= "1a3939eb747a635b23b4234f785795c52dce72a8" +SRCREV_meta ?= "7df849fc7eba54765368e26634341dbe6e2ad161" + +PV = "${LINUX_VERSION}+git${SRCPV}" + +SRC_URI = "git://git.yoctoproject.org/linux-yocto-dev.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta" + +COMPATIBLE_MACHINE = "(qemux86)" + +# Functionality flags +KERNEL_FEATURES = "" diff --git a/meta/recipes-kernel/linux/linux-yocto_3.17.bb b/meta/recipes-kernel/linux/linux-yocto_3.17.bb new file mode 100644 index 0000000000..7fe7fdaa4a --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto_3.17.bb @@ -0,0 +1,37 @@ +KBRANCH ?= "standard/base" + +require recipes-kernel/linux/linux-yocto.inc + +# board specific branches +KBRANCH_qemuarm ?= "standard/arm-versatile-926ejs" +KBRANCH_qemumips ?= "standard/mti-malta32" +KBRANCH_qemuppc ?= "standard/qemuppc" +KBRANCH_qemux86 ?= "standard/common-pc" +KBRANCH_qemux86-64 ?= "standard/common-pc-64/base" +KBRANCH_qemumips64 ?= "standard/mti-malta64" + +SRCREV_machine_qemuarm ?= "4bacea69cf78bdf42bcf7619239294b8996c5dac" +SRCREV_machine_qemumips ?= "69d4e97c23d4d031f55645cd0486064979e4db5c" +SRCREV_machine_qemuppc ?= "4e5f8849093f71f8caebedd8af4660baace9bccb" +SRCREV_machine_qemux86 ?= "1a3939eb747a635b23b4234f785795c52dce72a8" +SRCREV_machine_qemux86-64 ?= "1a3939eb747a635b23b4234f785795c52dce72a8" +SRCREV_machine_qemumips64 ?= "5e036fb17397a241fda2211a6caaa6e6f3121250" +SRCREV_machine ?= "1a3939eb747a635b23b4234f785795c52dce72a8" +SRCREV_meta ?= "7df849fc7eba54765368e26634341dbe6e2ad161" + +SRC_URI = "git://git.yoctoproject.org/linux-yocto-dev.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta" + +LINUX_VERSION ?= "3.17-rc4" + +PV = "${LINUX_VERSION}+git${SRCPV}" + +KMETA = "meta" + +COMPATIBLE_MACHINE = "qemuarm|qemux86|qemuppc|qemumips|qemumips64|qemux86-64" + +# Functionality flags +KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc" +KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}" +KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" +KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" +KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}" |