From ca90ac5e6284f20a0d6c1f4acede7a13f9633571 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 16 Feb 2016 11:31:42 +0200 Subject: [PATCH] net: Select NETWORKING_IPV6_NO_ND in case of NETWORKING_WITH_BT Bluetooth links are point to point so it shouldn't be necessary to do neighbor discovery, futhermore it blocks transmission if the remote doesn't respond which seems to be the case with Linux. Change-Id: Ic8997f9c5bc832ba71f71e20e6317ee0c79d250d Signed-off-by: Luiz Augusto von Dentz --- net/ip/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/net/ip/Kconfig b/net/ip/Kconfig index d914fc4f483..8de2dd989ac 100644 --- a/net/ip/Kconfig +++ b/net/ip/Kconfig @@ -327,6 +327,7 @@ config NETWORKING_WITH_BT depends on NETWORKING && NETWORKING_WITH_IPV6 depends on BLUETOOTH_L2CAP_DYNAMIC_CHANNEL select L2_BUFFERS + select NETWORKING_IPV6_NO_ND default n help Enable Bluetooth driver that send and receives IPv6 packets,