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.
20 lines
373 B
Plaintext
20 lines
373 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config EXAMPLES_PPPD
|
|
tristate "pppd client example"
|
|
select NETUTILS_PPPD
|
|
default n
|
|
---help---
|
|
Enable the pppd client example
|
|
|
|
if EXAMPLES_PPPD
|
|
|
|
config EXAMPLES_PPPD_STACKSIZE
|
|
int "pppd example stack stack size"
|
|
default 2048
|
|
|
|
endif
|