:orphan: .. title:: CONFIG_NET_CONFIG_AUTO_INIT .. kconfig:: CONFIG_NET_CONFIG_AUTO_INIT CONFIG_NET_CONFIG_AUTO_INIT ########################### *Init networking support automatically during device startup* Type: ``bool`` Help ==== .. code-block:: none 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 =================== \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - n if \ :kconfig:`USB_DEVICE_NETWORK ` - y Kconfig definition ================== At ``/net/lib/config/Kconfig:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:89`` → ``/net/lib/Kconfig:28`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Libraries .. code-block:: kconfig config NET_CONFIG_AUTO_INIT bool "Init networking support automatically during device startup" default n if USB_DEVICE_NETWORK default y depends on 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.)*