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:58 +1000
commitb271330b745ead404ddb8a9912db44da6fbbf968 (patch)
treea3438afc4f65df07ee091f94ed2499f4f4357062
parent989a6a12010247aebf137d8ad3f6a042da42640a (diff)
downloadmeta-xilinx-jethro.tar.gz
linux-xilinx-machines.inc: Do not clobber COMPATIBLE_MACHINEjethro
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 67b07277..136eead4 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_microblaze = "microblaze" 4COMPATIBLE_MACHINE_microblaze = "microblaze"
5 5