:orphan: .. title:: NET_CONFIG_AUTO_INIT .. option:: CONFIG_NET_CONFIG_AUTO_INIT *Init networking support automatically during device startup* Type: ``bool`` Help ==== If this option is set, then the networking system is automatically initialized when the device is started. If you do not wish to do this, then disable this and call net_config_init() in your application. Direct dependencies =================== \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - n if \ :option:`USB_DEVICE_NETWORK ` - y Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/lib/config/Kconfig:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:89`` → ``subsys/net/lib/Kconfig:28`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Libraries .. parsed-literal:: config NET_CONFIG_AUTO_INIT bool "Init networking support automatically during device startup" default n if \ :option:`USB_DEVICE_NETWORK ` default y depends on \ :option:`NETWORKING ` help If this option is set, then the networking system is automatically initialized when the device is started. If you do not wish to do this, then disable this and call net_config_init() in your application. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*