9
0
Fork 0

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 ad14d6ca76
commit 85613e95e4
5 changed files with 8 additions and 8 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

View File

@ -597,15 +597,14 @@ CONFIG_EXAMPLES_NSH=y
# CONFIG_EXAMPLES_USBSERIAL is not set
# CONFIG_EXAMPLES_USBTERM is not set
CONFIG_EXAMPLES_UDGRAM=y
CONFIG_EXAMPLES_UDGRAM_ADDR="/var/fifo/fifo"
CONFIG_EXAMPLES_UDGRAM_ADDR="/dev/fifo"
CONFIG_EXAMPLES_UDGRAM_SERVER_APPNAME="server"
CONFIG_EXAMPLES_UDGRAM_SERVER_STACKSIZE=4096
CONFIG_EXAMPLES_UDGRAM_SERVER_PRIORITY=100
CONFIG_EXAMPLES_UDGRAM_CLIENT_APPNAME="client"
CONFIG_EXAMPLES_UDGRAM_CLIENT_STACKSIZE=4096
CONFIG_EXAMPLES_UDGRAM_CLIENT_PRIORITY=100
CONFIG_EXAMPLES_USTREAM=y
CONFIG_EXAMPLES_USTREAM_ADDR="/var/fifo/fifo"
# CONFIG_EXAMPLES_USTREAM is not set
# CONFIG_EXAMPLES_WATCHDOG is not set
#

View File

@ -596,8 +596,9 @@ CONFIG_EXAMPLES_NSH=y
# CONFIG_EXAMPLES_WEBSERVER is not set
# CONFIG_EXAMPLES_USBSERIAL is not set
# CONFIG_EXAMPLES_USBTERM is not set
# CONFIG_EXAMPLES_UDGRAM is not set
CONFIG_EXAMPLES_USTREAM=y
CONFIG_EXAMPLES_USTREAM_ADDR="/var/fifo/fifo"
CONFIG_EXAMPLES_USTREAM_ADDR="/dev/fifo"
# CONFIG_EXAMPLES_WATCHDOG is not set
#