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
parent 1a16b9decf
commit a4cfee8fe6
1 changed files with 6 additions and 1 deletions

View File

@ -8,4 +8,9 @@ BOARD ?= qemu_x86
CONF_FILE ?= prj_$(BOARD).conf
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