summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2016-06-16 21:39:20 +1000
committerNathan Rossi <nathan@nathanrossi.com>2016-06-16 22:06:16 +1000
commitdcd1c218f943c3657b138cb05012c90c65f32a35 (patch)
treeaa075f2289468da16b0e6cc49e2862fa60989a04
parentba4f7d090d573cc40dee91eea6c0c9f9ca596b50 (diff)
downloadmeta-xilinx-krogoth.tar.gz
linux-xilinx-machines.inc: Do not clobber COMPATIBLE_MACHINEkrogoth
Do not clobber the value of COMPATIBLE_MACHINE, instead set it via ?=. This was clobbering the COMPATIBLE_MACHINE values from linux-yocto causing issues when the meta-xilinx layer was added but not building a meta-xilinx machine. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
-rw-r--r--recipes-kernel/linux/linux-xilinx-machines.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-kernel/linux/linux-xilinx-machines.inc b/recipes-kernel/linux/linux-xilinx-machines.inc
index 1e0cc0ed..aa3149b1 100644
--- a/recipes-kernel/linux/linux-xilinx-machines.inc
+++ b/recipes-kernel/linux/linux-xilinx-machines.inc
@@ -1,5 +1,5 @@
1# Setup for MicroBlaze and Zynq architectures 1# Setup for MicroBlaze and Zynq architectures
2COMPATIBLE_MACHINE = "^$" 2COMPATIBLE_MACHINE ?= "^$"
3COMPATIBLE_MACHINE_zynq = "zynq" 3COMPATIBLE_MACHINE_zynq = "zynq"
4COMPATIBLE_MACHINE_zynqmp = "zynqmp" 4COMPATIBLE_MACHINE_zynqmp = "zynqmp"
5COMPATIBLE_MACHINE_microblaze = "microblaze" 5COMPATIBLE_MACHINE_microblaze = "microblaze"