27 lines
539 B
Plaintext
27 lines
539 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see misc/tools/kconfig-language.txt.
|
|
#
|
|
|
|
config NETUTILS_PPPD
|
|
bool "PPP daemon"
|
|
default n
|
|
select NET_TUN
|
|
---help---
|
|
Enable support for the PPP daemon.
|
|
|
|
if NETUTILS_PPPD
|
|
|
|
config NETUTILS_PPPD_STACKSIZE
|
|
int "PPP daemon stack stack size"
|
|
default 2048
|
|
|
|
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
|