2019-11-08 09:31:41 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2020-05-06 20:47:39 +08:00
|
|
|
config NETUTILS_USRSOCK_RPMSG
|
2019-11-08 09:31:41 -06:00
|
|
|
tristate "RPMSG usrsock"
|
|
|
|
default n
|
|
|
|
depends on NET && OPENAMP
|
|
|
|
---help---
|
|
|
|
Enable usrsock through rpmsg channel.
|
|
|
|
|
2020-05-06 20:47:39 +08:00
|
|
|
if NETUTILS_USRSOCK_RPMSG
|
2019-11-08 09:31:41 -06:00
|
|
|
|
2020-05-06 20:47:39 +08:00
|
|
|
config NETUTILS_USRSOCK_RPMSG_PRIORITY
|
2019-11-08 09:31:41 -06:00
|
|
|
int "usrsock task priority"
|
|
|
|
default 80
|
|
|
|
---help---
|
|
|
|
The priority for usrsock task.
|
|
|
|
|
2020-05-06 20:47:39 +08:00
|
|
|
config NETUTILS_USRSOCK_RPMSG_STACKSIZE
|
2019-11-08 09:31:41 -06:00
|
|
|
int "usrsock task stack size"
|
2020-03-27 14:10:33 +09:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2019-11-08 09:31:41 -06:00
|
|
|
---help---
|
|
|
|
The stack size allocated for the usrsock task.
|
|
|
|
|
2020-05-06 20:47:39 +08:00
|
|
|
endif # NETUTILS_USRSOCK_RPMSG
|