:orphan: .. title:: CONFIG_GSM_PPP_AUTOSTART .. kconfig:: CONFIG_GSM_PPP_AUTOSTART CONFIG_GSM_PPP_AUTOSTART ######################## *Auto-start PPP at boot* Type: ``bool`` Help ==== .. code-block:: none This setting lets driver connect to network and initialize PPP at boot. Unselect this if you want to run application code before modem connects to network. See contents of "drivers/gsm_ppp.h" to get an idea of the API. Direct dependencies =================== \ :kconfig:`MODEM_GSM_PPP ` && \ :kconfig:`MODEM ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/modem/Kconfig.gsm:58`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:84`` → ``/modem/Kconfig:144`` Menu path: (Top) → Device Drivers → Modem Drivers → Support GSM modems .. code-block:: kconfig config GSM_PPP_AUTOSTART bool "Auto-start PPP at boot" default y depends on MODEM_GSM_PPP && MODEM help This setting lets driver connect to network and initialize PPP at boot. Unselect this if you want to run application code before modem connects to network. See contents of "drivers/gsm_ppp.h" to get an idea of the API. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*