2019-11-02 11:30:33 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2020-02-15 07:38:35 -06:00
|
|
|
menuconfig RPTUN
|
|
|
|
bool "Remote Proc Tunnel Driver Support"
|
|
|
|
default n
|
|
|
|
depends on OPENAMP
|
|
|
|
---help---
|
|
|
|
RPTUN driver is used for multi-cores' communication.
|
|
|
|
|
2020-02-08 15:30:09 +08:00
|
|
|
if RPTUN
|
|
|
|
|
2019-11-02 11:30:33 -06:00
|
|
|
config RPTUN_PRIORITY
|
|
|
|
int "rpturn thread priority"
|
|
|
|
default 224
|
|
|
|
|
|
|
|
config RPTUN_STACKSIZE
|
|
|
|
int "rptun stack size"
|
2020-04-18 00:25:31 +08:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2020-02-08 15:30:09 +08:00
|
|
|
|
2021-09-02 14:47:31 +08:00
|
|
|
config RPTUN_LOADER
|
2021-10-18 23:06:10 +08:00
|
|
|
bool "rptun loader support"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config RPTUN_LOCAL_CPUNAME
|
|
|
|
string "rptun local cpuname"
|
|
|
|
default LIBC_HOSTNAME
|
2021-09-02 14:47:31 +08:00
|
|
|
|
2020-02-08 15:30:09 +08:00
|
|
|
endif # RPTUN
|