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>
85 lines
1.9 KiB
Makefile
85 lines
1.9 KiB
Makefile
#
|
|
# Overlay cfg-common.mk
|
|
#
|
|
export CONFIG_RK_CHIP=rv1106
|
|
export CONFIG_RK_MEDIA_CROSS=arm-rockchip830-linux-uclibcgnueabihf
|
|
|
|
#------------------------------------------------
|
|
# Enable libdrm
|
|
export CONFIG_LIBDRM=y
|
|
|
|
#------------------------------------------------
|
|
# Rockchip's MPP(Multimedia Processing Platform)
|
|
#
|
|
# Enable MPP Build
|
|
export CONFIG_RK_MPP=y
|
|
# Rockchip MPP use drm allocator
|
|
export CONFIG_RK_MPP_ALLOCATOR_DRM=n
|
|
# Install test programs
|
|
export CONFIG_RK_MPP_TESTS=y
|
|
|
|
#------------------------------------------------
|
|
# Rockchip's RKAIQ(Rockchip Auto Image Quality)
|
|
#
|
|
# Enable RKAIQ Build
|
|
export CONFIG_RK_RKAIQ=y
|
|
# ISP Hardware version
|
|
export CONFIG_RK_ISP_HW_VERSION_V32=y
|
|
# ISP build demo
|
|
export CONFIG_RK_ISP_BUILD_DEMO=y
|
|
|
|
#------------------------------------------------
|
|
# Rockchip's RGA2 (Raster Graphic Acceleration)
|
|
#
|
|
# Enable RGA2 Build
|
|
export CONFIG_RK_RGA2=y
|
|
# RGA2 build with libdrm
|
|
export CONFIG_RK_RGA2_USE_LIBDRM=n
|
|
|
|
#------------------------------------------------
|
|
# Rockchip's common algorithm
|
|
#
|
|
# Enable common_algorithm Build
|
|
export CONFIG_RK_COMMON_ALGORITHM=y
|
|
|
|
#------------------------------------------------
|
|
# Rockchip's rockit
|
|
#
|
|
# Enable Rockit Build
|
|
export CONFIG_RK_ROCKIT=y
|
|
|
|
#------------------------------------------------
|
|
# Rockchip's iva
|
|
#
|
|
# Enable iva Build
|
|
export CONFIG_RK_IVA=y
|
|
|
|
#------------------------------------------------
|
|
# Rockchip's ive
|
|
#
|
|
# Enable ive Build
|
|
export CONFIG_RK_IVE=y
|
|
|
|
#------------------------------------------------
|
|
# Rockchip's hardware crypto
|
|
#
|
|
# Enable librkcrypto Build
|
|
export CONFIG_RK_CRYPTO=n
|
|
|
|
# Enable alsa-lib
|
|
# export CONFIG_ALSA_LIB=y
|
|
|
|
# Enable libv4l
|
|
# export CONFIG_LIBV4L=y
|
|
|
|
##------------------------------------------------
|
|
# Rockchip's avs
|
|
#
|
|
# Enable avs Build
|
|
export CONFIG_RK_AVS=y
|
|
|
|
#------------------------------------------------
|
|
# Rockchip's auto
|
|
#
|
|
# Enable auto Build
|
|
export CONFIG_RK_ROCKAUTO=y
|