2015-03-11 14:53:04 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2015-03-11 14:53:04 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
config NETUTILS_PPPD
|
|
|
|
bool "PPP daemon"
|
|
|
|
default n
|
2016-01-30 00:11:06 +01:00
|
|
|
select NETUTILS_CHAT
|
2015-03-11 14:53:04 +01:00
|
|
|
select NET_TUN
|
2015-05-19 20:07:07 +02:00
|
|
|
depends on NET && NET_UDP
|
2015-03-11 14:53:04 +01:00
|
|
|
---help---
|
|
|
|
Enable support for the PPP daemon.
|
|
|
|
|
|
|
|
if NETUTILS_PPPD
|
|
|
|
|
|
|
|
config NETUTILS_PPPD_STACKSIZE
|
|
|
|
int "PPP daemon stack stack size"
|
|
|
|
default 2048
|
|
|
|
|
2015-04-14 14:45:17 +02:00
|
|
|
config NETUTILS_PPPD_PAP
|
|
|
|
bool "PPP PAP Authentication Support"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable PAP Authentication for ppp connection, this requires
|
|
|
|
authentication credentials to be supplied.
|
|
|
|
|
2015-03-11 14:53:04 +01:00
|
|
|
endif # NETUTILS_PPPD
|