From c42423e29122c47264d4094070e4141cff814a73 Mon Sep 17 00:00:00 2001 From: Juro Bystricky Date: Sun, 5 Feb 2017 20:07:10 -0800 Subject: [PATCH] zephyr-qemuboot.bbclass: disable QEMU network Setting QB_NET = "none" bypasses network configuration in runqemu. Signed-off-by: Juro Bystricky --- classes/zephyr-qemuboot.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/classes/zephyr-qemuboot.bbclass b/classes/zephyr-qemuboot.bbclass index a713454..42dc46e 100644 --- a/classes/zephyr-qemuboot.bbclass +++ b/classes/zephyr-qemuboot.bbclass @@ -2,7 +2,8 @@ inherit qemuboot KERNEL_IMAGETYPE = "${PN}.elf" QB_DEFAULT_FSTYPE = "elf" -QB_NETWORK_DEVICE =" none" +QB_NETWORK_DEVICE = "none" +QB_NET = "none" IMAGE_LINK_NAME = "${PN}-image-${MACHINE}"