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>
46 lines
807 B
Bash
Executable File
46 lines
807 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2020 Fuzhou Rockchip Electronics Co., Ltd
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
set -e
|
|
|
|
source ./scripts/fit-core.sh
|
|
fit_process_args $*
|
|
|
|
if [ ! -z "${ARG_VALIDATE}" ]; then
|
|
validate_arg ${ARG_VALIDATE}
|
|
else
|
|
fit_raw_compile
|
|
if [ ! -z "${ARG_RECOVERY_IMG}" ]; then
|
|
fit_gen_recovery_itb
|
|
fit_gen_recovery_img
|
|
fi
|
|
# "--boot_img_dir" is for U-Boot debug only
|
|
if [ ! -z "${ARG_BOOT_IMG}" -o ! -z "${ARG_BOOT_IMG_DIR}" ]; then
|
|
fit_gen_boot_itb
|
|
fit_gen_boot_img
|
|
fi
|
|
|
|
if [ ! -z "${ARG_INI_TRUST}" ]; then
|
|
fit_gen_uboot_itb
|
|
fit_gen_uboot_img
|
|
fi
|
|
|
|
if [ ! -z "${ARG_INI_LOADER}" ]; then
|
|
fit_gen_loader
|
|
fi
|
|
|
|
echo
|
|
|
|
if [ ! -z "${ARG_INI_TRUST}" ]; then
|
|
fit_msg_uboot
|
|
fi
|
|
fit_msg_recovery
|
|
fit_msg_boot
|
|
if [ ! -z "${ARG_INI_LOADER}" ]; then
|
|
fit_msg_loader
|
|
fi
|
|
fi
|