summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorJoe Slater <jslater@windriver.com>2017-07-20 16:19:51 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-07-24 09:13:32 +0100
commitf19dd2be627c66b9114a3bdf70fd207c984ea793 (patch)
tree7825b65b880df811fff66f4293df2d0f305dd9cc /meta
parent87af2104afc3c6119ac150873aca0aeded3d3c42 (diff)
downloadpoky-f19dd2be627c66b9114a3bdf70fd207c984ea793.tar.gz
linux-yocto: only suggest default kernel type
The distro should set a default kernel type (?=) which could be overriden by local.conf (=) or extensions (templates). The kernel itself should only use "??=" to provide a value which allows builds to succeed. (From OE-Core rev: d3a41fbd94462efc8c6f1b55f6fb54001b447c45) Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-kernel/linux/linux-yocto.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto.inc b/meta/recipes-kernel/linux/linux-yocto.inc
index 637506a2a8..aec06c2427 100644
--- a/meta/recipes-kernel/linux/linux-yocto.inc
+++ b/meta/recipes-kernel/linux/linux-yocto.inc
@@ -33,7 +33,8 @@ KERNEL_FEATURES_append_qemuall=" features/debug/printk.scc"
33# and it can be specific to the machine or shared 33# and it can be specific to the machine or shared
34# KMACHINE = "UNDEFINED" 34# KMACHINE = "UNDEFINED"
35 35
36LINUX_KERNEL_TYPE ?= "standard" 36# The distro or local.conf should set this, but if nobody cares...
37LINUX_KERNEL_TYPE ??= "standard"
37 38
38# KMETA ?= "" 39# KMETA ?= ""
39KBRANCH ?= "master" 40KBRANCH ?= "master"