From 77b8f5c1f635b12160fa0111e4f1d1b68b41bc78 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 6 Oct 2017 12:58:48 +0300 Subject: [PATCH] net: l2: ieee802154: Automatically select CONFIG_NET_6LO 802.15.4 IP-based networking requires 6LoWPAN layer and won't work correctly without it. So, if NET_L2_IEEE802154 is select, automatically select NET_6LO. This is similar to what BLE L2 does (NET_L2_BT causes selection of NET_6LO). Signed-off-by: Paul Sokolovsky --- subsys/net/ip/l2/ieee802154/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/net/ip/l2/ieee802154/Kconfig b/subsys/net/ip/l2/ieee802154/Kconfig index 4f50e31230..44a57f1399 100644 --- a/subsys/net/ip/l2/ieee802154/Kconfig +++ b/subsys/net/ip/l2/ieee802154/Kconfig @@ -6,6 +6,7 @@ menuconfig NET_L2_IEEE802154 bool "Enable IEEE 802.15.4 Radio" + select NET_6LO default n help Add support for low rate WPAN IEEE 802.15.4 technology.