project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
55 lines
1.3 KiB
Plaintext
55 lines
1.3 KiB
Plaintext
menu "RT-Thread Components"
|
|
|
|
config RT_USING_COMPONENTS_INIT
|
|
bool "Use components automatically initialization"
|
|
default y
|
|
|
|
if RT_USING_COMPONENTS_INIT
|
|
config RT_USING_USER_MAIN
|
|
bool "The main() function as user entry function"
|
|
default y
|
|
|
|
if RT_USING_USER_MAIN
|
|
config RT_MAIN_THREAD_STACK_SIZE
|
|
int "Set main thread stack size"
|
|
default 2048
|
|
config RT_MAIN_THREAD_PRIORITY
|
|
int "Set main thread priority"
|
|
default 4 if RT_THREAD_PRIORITY_8
|
|
default 10 if RT_THREAD_PRIORITY_32
|
|
default 85 if RT_THREAD_PRIORITY_256
|
|
endif
|
|
endif
|
|
|
|
source "$RTT_DIR/components/cplusplus/Kconfig"
|
|
|
|
source "$RTT_DIR/components/finsh/Kconfig"
|
|
|
|
source "$RTT_DIR/components/dfs/Kconfig"
|
|
|
|
source "$RTT_DIR/components/drivers/Kconfig"
|
|
|
|
source "$RTT_DIR/components/libc/Kconfig"
|
|
|
|
source "$RTT_DIR/components/net/Kconfig"
|
|
|
|
source "$RTT_DIR/components/system/Kconfig"
|
|
|
|
source "$RTT_DIR/components/vbus/Kconfig"
|
|
|
|
source "$RTT_DIR/components/utilities/Kconfig"
|
|
|
|
source "$RTT_DIR/components/CMSIS/Kconfig"
|
|
|
|
source "$RTT_DIR/components/benchmark/Kconfig"
|
|
|
|
source "$RTT_DIR/components/http/Kconfig"
|
|
|
|
source "$RTT_DIR/components/ota/Kconfig"
|
|
|
|
source "$RTT_DIR/components/aupipe/Kconfig"
|
|
|
|
source "$RTT_DIR/components/rpmsg_cmd/Kconfig"
|
|
|
|
endmenu
|