5cced37a1b
Add the fastbootd program to support the flash, getvar, and reboot commands. Signed-off-by: zhangyuan21 <zhangyuan21@xiaomi.com>
28 lines
580 B
Plaintext
28 lines
580 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
|
|
|
|
endif # SYSTEM_FASTBOOTD
|