20 lines
390 B
Plaintext
20 lines
390 B
Plaintext
|
#
|
||
|
# For a description of the syntax of this configuration file,
|
||
|
# see misc/tools/kconfig-language.txt.
|
||
|
#
|
||
|
|
||
|
config EXAMPLES_UDGRAM
|
||
|
bool "Unix domain datagram example"
|
||
|
default n
|
||
|
depends on NET_LOCAL
|
||
|
---help---
|
||
|
Enable the Unix domain SOCK_DGRAM test example
|
||
|
|
||
|
if EXAMPLES_UDGRAM
|
||
|
|
||
|
config EXAMPLES_UDGRAM_ADDR
|
||
|
string "Unix domain address"
|
||
|
default "/var/fifo/fifo"
|
||
|
|
||
|
endif # EXAMPLES_UDGRAM
|