zephyr/subsys/net/l2/CMakeLists.txt
Jonathan Rico e3ff993000 Network: L2: remove IPSP
Remove IPSP support from the tree.

It has no maintainers, and is regularly broken. The fact that it's
nontrivial to set-up in linux makes it hard to fix reported issues.

Signed-off-by: Jonathan Rico <jonathan.rico@nordicsemi.no>
2024-04-11 12:48:50 +02:00

38 lines
673 B
CMake

# SPDX-License-Identifier: Apache-2.0
if(CONFIG_NET_L2_VIRTUAL)
add_subdirectory(virtual)
endif()
if(CONFIG_NET_L2_DUMMY)
add_subdirectory(dummy)
endif()
if (CONFIG_NET_OFFLOAD OR CONFIG_NET_SOCKETS_OFFLOAD)
add_subdirectory(offloaded_netdev)
endif()
if(CONFIG_NET_L2_ETHERNET)
add_subdirectory(ethernet)
endif()
if(CONFIG_NET_L2_PPP)
add_subdirectory(ppp)
endif()
if(CONFIG_NET_L2_IEEE802154)
add_subdirectory(ieee802154)
endif()
if(CONFIG_NET_L2_OPENTHREAD)
add_subdirectory(openthread)
endif()
if(CONFIG_NET_L2_WIFI_MGMT OR CONFIG_NET_L2_WIFI_SHELL)
add_subdirectory(wifi)
endif()
if(CONFIG_NET_L2_CANBUS_RAW)
add_subdirectory(canbus)
endif()