diff options
author | Nathan Rossi <nathan.rossi@xilinx.com> | 2015-04-20 15:56:52 +1000 |
---|---|---|
committer | Nathan Rossi <nathan.rossi@xilinx.com> | 2015-04-20 16:29:08 +1000 |
commit | 19d54bd320628fb0549216b86f0a9a8648aea289 (patch) | |
tree | 897ab4ecc5eeb2d2bf34bd67b9b988d1a38dc344 | |
parent | bd58d7ed223813c577f560dd2753e81ee4d65148 (diff) | |
download | meta-xilinx-19d54bd320628fb0549216b86f0a9a8648aea289.tar.gz |
machine-xilinx-default.inc: Default MicroBlaze to linux-yocto provider
* Default the virtual/kernel for MicroBlaze to linux-yocto
* Add the "XILINX_DEFAULT_KERNEL" variable to allow different defaults
based on machine overrides
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
-rw-r--r-- | conf/machine/include/machine-xilinx-default.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/conf/machine/include/machine-xilinx-default.inc b/conf/machine/include/machine-xilinx-default.inc index f7ac84e5..11939897 100644 --- a/conf/machine/include/machine-xilinx-default.inc +++ b/conf/machine/include/machine-xilinx-default.inc | |||
@@ -7,7 +7,10 @@ IMAGE_FSTYPES ?= "tar.gz cpio cpio.gz.u-boot" | |||
7 | IMAGE_CLASSES += "image_types_uboot" | 7 | IMAGE_CLASSES += "image_types_uboot" |
8 | 8 | ||
9 | # Kernel Configuration | 9 | # Kernel Configuration |
10 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-xlnx" | 10 | XILINX_DEFAULT_KERNEL := "linux-xlnx" |
11 | XILINX_DEFAULT_KERNEL_microblaze := "linux-yocto" | ||
12 | |||
13 | PREFERRED_PROVIDER_virtual/kernel ??= "${XILINX_DEFAULT_KERNEL}" | ||
11 | PREFERRED_VERSION_linux-xlnx ?= "3.14%" | 14 | PREFERRED_VERSION_linux-xlnx ?= "3.14%" |
12 | PREFERRED_VERSION_linux-yocto ?= "3.19%" | 15 | PREFERRED_VERSION_linux-yocto ?= "3.19%" |
13 | 16 | ||