apps/ustream and udgram: Change default FIFO path to /dev/fifo

This commit is contained in:
Gregory Nutt 2015-01-30 09:07:22 -06:00
parent dcce1649e3
commit ac103febad
3 changed files with 4 additions and 4 deletions

View File

@ -1988,7 +1988,7 @@ examples/ustream
Configuration:
CONFIG_EXAMPLES_UDGRAM - Enables the Unix domain socket example.
CONFIG_EXAMPLES_UDGRAM_ADDR - Specifics the Unix domain address.
Default "/var/fifo/fifo".
Default "/dev/fifo".
examples/ustream
^^^^^^^^^^^^^^^^
@ -2002,7 +2002,7 @@ examples/ustream
Configuration:
CONFIG_EXAMPLES_USTREAM - Enables the Unix domain socket example.
CONFIG_EXAMPLES_USTREAM_ADDR - Specifics the Unix domain address.
Default "/var/fifo/fifo".
Default "/dev/fifo".
examples/watchdog
^^^^^^^^^^^^^^^^^

View File

@ -14,7 +14,7 @@ if EXAMPLES_UDGRAM
config EXAMPLES_UDGRAM_ADDR
string "Unix domain address"
default "/var/fifo/fifo"
default "/dev/fifo"
config EXAMPLES_UDGRAM_SERVER_APPNAME
string "Server executable name"

View File

@ -14,6 +14,6 @@ if EXAMPLES_USTREAM
config EXAMPLES_USTREAM_ADDR
string "Unix domain address"
default "/var/fifo/fifo"
default "/dev/fifo"
endif # EXAMPLES_USTREAM