From 8aa7f645587d3900f52d3b545543058ce0457e63 Mon Sep 17 00:00:00 2001 From: Nathan Rossi Date: Tue, 30 May 2017 21:30:28 +1000 Subject: qemu-xilinx: Set the value of QEMU_TARGETS as opposed to default Some distro's set the value of QEMU_TARGETS with the '?=' operator, this takes precedence over value being set in qemu-xilinx. This is problematic as this can remove the MicroBlaze or AArch targets that are used. An example of a distro that sets this is poky. Signed-off-by: Nathan Rossi Reviewed-by: Alistair Francis Tested-by: Alistair Francis --- recipes-devtools/qemu/qemu-xilinx_2017.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-devtools/qemu/qemu-xilinx_2017.1.bb b/recipes-devtools/qemu/qemu-xilinx_2017.1.bb index f149da06..c0d09621 100644 --- a/recipes-devtools/qemu/qemu-xilinx_2017.1.bb +++ b/recipes-devtools/qemu/qemu-xilinx_2017.1.bb @@ -1,4 +1,4 @@ -QEMU_TARGETS ?= "aarch64 arm microblaze microblazeel" +QEMU_TARGETS = "aarch64 arm microblaze microblazeel" require recipes-devtools/qemu/qemu.inc -- cgit v1.2.3-54-g00ecf