From eb5354651a7574d9bb406a93b4d1c8d7de1916f6 Mon Sep 17 00:00:00 2001 From: Jimmy Huang Date: Wed, 30 May 2018 15:17:27 -0700 Subject: [PATCH] [ocf] Fix OCF resources not discoverable on FRDM-K64F This patch fixes the issue that multicast discovery messages cannot be routed to the server after Zephyr update 1.11 with IPV6, but turning on promiscuous mode resolves this issue. Fixes #1885 Signed-off-by: Jimmy Huang --- src/zjs_ocf.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/zjs_ocf.json b/src/zjs_ocf.json index 4a9026100..38ce8e480 100644 --- a/src/zjs_ocf.json +++ b/src/zjs_ocf.json @@ -23,6 +23,7 @@ "CONFIG_NET_UDP=y", "CONFIG_TEST_RANDOM_GENERATOR=y", "CONFIG_INIT_STACKS=y", + "CONFIG_ETH_MCUX_PROMISCUOUS_MODE=y", "CONFIG_NET_PKT_RX_COUNT=5", "CONFIG_NET_PKT_TX_COUNT=5", "CONFIG_NET_BUF_RX_COUNT=10",