1# Net stack configuration options 2 3# Copyright (c) 2015 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6menu "Networking" 7 8config NETWORKING 9 bool "Link layer and networking (including IP)" 10 select NET_BUF 11 select POLL 12 select ENTROPY_GENERATOR 13 help 14 This option enables generic link layer and networking support 15 and is the basis for higher level protocols (e.g. IP protocols). 16 17if NETWORKING 18 19# Such option should not be configured manually but by device drivers 20# which supports PM properly. 21config NET_POWER_MANAGEMENT 22 bool 23 depends on PM_DEVICE 24 25source "subsys/net/Kconfig.hostname" 26 27source "subsys/net/l2/Kconfig" 28 29source "subsys/net/ip/Kconfig" 30 31source "subsys/net/pkt_filter/Kconfig" 32 33source "subsys/net/lib/Kconfig" 34 35source "subsys/net/conn_mgr/Kconfig" 36 37endif 38 39endmenu 40