samples: net: http_server: Set QEMU flags for Bluetooth connection

Bluetooth needs different QEMU_EXTRA_FLAGS than SLIP.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
Jukka Rissanen 2017-07-28 14:29:21 +03:00
commit a4cfee8fe6

View file

@ -8,4 +8,9 @@ BOARD ?= qemu_x86
CONF_FILE ?= prj_$(BOARD).conf CONF_FILE ?= prj_$(BOARD).conf
include $(ZEPHYR_BASE)/Makefile.inc include $(ZEPHYR_BASE)/Makefile.inc
include $(ZEPHYR_BASE)/samples/net/common/Makefile.ipstack
ifeq ($(CONFIG_NET_L2_BLUETOOTH),y)
QEMU_EXTRA_FLAGS = -serial unix:/tmp/bt-server-bredr
else
include $(ZEPHYR_BASE)/samples/net/common/Makefile.ipstack
endif