nuttx-apps/system/fastboot/Kconfig
wangjianyu3 4d0b9d61de system/fastboot: Support USB boardctl
Signed-off-by: wangjianyu3 <wangjianyu3@xiaomi.com>
2024-09-11 23:20:48 +08:00

35 lines
751 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
menuconfig SYSTEM_FASTBOOTD
bool "fastbootd"
default n
depends on USBFASTBOOT
---help---
support usb fastboot function.
if SYSTEM_FASTBOOTD
config SYSTEM_FASTBOOTD_PRIORITY
int "USB-fastboot task priority"
default 100
config SYSTEM_FASTBOOTD_STACKSIZE
int "USB-fastboot stack size"
default DEFAULT_TASK_STACKSIZE
config SYSTEM_FASTBOOTD_DOWNLOAD_MAX
int "USB-fastboot download buffer size"
default 40960
config FASTBOOTD_USB_BOARDCTL
bool "USB Board Control"
depends on BOARDCTL
depends on BOARDCTL_USBDEVCTRL
---help---
Connect usbdev before running fastboot daemon.
endif # SYSTEM_FASTBOOTD