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>
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
# Normally this makefile shouldn't be called directly and we expect the output
|
|
# path to be on a certain location to fit together with the other OP-TEE
|
|
# gits and helper scripts.
|
|
|
|
include ../scripts/common.mk
|
|
out-dir := $(call strip-trailing-slashes-and-dots,$(O))
|
|
ifeq ($(out-dir),)
|
|
$(error invalid output directory (O=$(O)))
|
|
endif
|
|
|
|
include $(TA_DEV_KIT_DIR)/mk/conf.mk
|
|
|
|
# Prevent use of LDFLAGS from the environment. For example, yocto exports
|
|
# LDFLAGS that are suitable for the client applications, not for TAs
|
|
LDFLAGS=
|
|
|
|
TA_DIRS := create_fail_test \
|
|
crypt \
|
|
os_test_lib \
|
|
os_test_lib_dl \
|
|
os_test \
|
|
rpc_test \
|
|
sims \
|
|
miss \
|
|
sims_keepalive \
|
|
storage \
|
|
storage2 \
|
|
concurrent \
|
|
concurrent_large \
|
|
storage_benchmark \
|
|
sha_perf \
|
|
aes_perf \
|
|
socket \
|
|
supp_plugin \
|
|
rk_test \
|
|
extra_app \
|
|
rk_anti_copy_board
|
|
|
|
ifeq ($(CFG_SECURE_DATA_PATH),y)
|
|
TA_DIRS += sdp_basic
|
|
endif
|
|
|
|
.PHONY: all
|
|
all: ta
|
|
|
|
.PHONY: ta
|
|
ta:
|
|
$(q)$(foreach dir,$(TA_DIRS), [ ! -d $(dir) ] || $(MAKE) -C $(dir) O=$(out-dir)/ta/$(dir) &&) true
|
|
|
|
# remove build directories including ta/<ta-name>/ directories.
|
|
# Note: $(out-dir) may be a relative path.
|
|
RMDIR := rmdir --ignore-fail-on-non-empty
|
|
define rm-build-subdir
|
|
echo `[ -d $1 ] && { cd $1; $(RMDIR) $(out-dir)/ta $(out-dir) 2> /dev/null; true; }` > /dev/null
|
|
endef
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(q)$(foreach dir,$(TA_DIRS), [ ! -d $(dir) ] || $(MAKE) -C $(dir) O=$(out-dir)/ta/$(dir) $@ &&) true
|
|
$(q)$(foreach dir,$(TA_DIRS), $(call rm-build-subdir,$(dir));)
|