You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
535 B
24 lines
535 B
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config NETUTILS_PPPD
|
|
bool "PPP server"
|
|
default n
|
|
select NETUTILS_CHAT
|
|
select NET_TUN
|
|
depends on NET && NET_UDP
|
|
---help---
|
|
Enable support for the PPP daemon.
|
|
|
|
if NETUTILS_PPPD
|
|
|
|
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.
|
|
|
|
endif # NETUTILS_PPPD
|
|
|