cddfda99f0
Reviewers note: Reviewing the changes I also see that these file did not follow the NuttX codings standard. I ran all files through nuttx/tools/indent.sh, manually reviewed all files for coding style issues. I also changed occurrences of non-standard types u8_t, u16_t, and u32_t to the standard uint8_t, uint16_t, and uint32_t.
25 lines
535 B
Plaintext
Executable File
25 lines
535 B
Plaintext
Executable File
#
|
|
# 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
|