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 <[email protected]> Reviewed-by: Alistair Francis <[email protected]> --- 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 f149da06c3..c0d096213e 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 -- 2.11.0 -- _______________________________________________ meta-xilinx mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-xilinx
