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.9 KiB
Python
61 lines
1.9 KiB
Python
import os
|
|
ARCH = 'risc-v'
|
|
CPU = 'scr1'
|
|
# toolchains options
|
|
CROSS_TOOL = 'gcc'
|
|
|
|
#------- toolchains path -------------------------------------------------------
|
|
if os.getenv('RTT_CC'):
|
|
CROSS_TOOL = os.getenv('RTT_CC')
|
|
|
|
if CROSS_TOOL == 'gcc':
|
|
PLATFORM = 'gcc'
|
|
EXEC_PATH = '../../../../prebuilts/gcc/linux-x86/riscv64/xpack-riscv-none-embed-gcc-10.2.0-1.2/bin'
|
|
|
|
if os.getenv('RTT_EXEC_PATH'):
|
|
EXEC_PATH = os.getenv('RTT_EXEC_PATH')
|
|
|
|
BUILD = 'release'
|
|
|
|
CORE = 'risc-v'
|
|
MAP_FILE = 'rtthread.map'
|
|
LINK_FILE = './link.lds'
|
|
TARGET_NAME = 'rtthread.bin'
|
|
|
|
#------- GCC settings ----------------------------------------------------------
|
|
if PLATFORM == 'gcc':
|
|
# toolchains
|
|
PREFIX = 'riscv-none-embed-'
|
|
CC = PREFIX + 'gcc'
|
|
AS = PREFIX + 'gcc'
|
|
AR = PREFIX + 'ar'
|
|
LINK = PREFIX + 'gcc'
|
|
TARGET_EXT = 'elf'
|
|
SIZE = PREFIX + 'size'
|
|
OBJDUMP = PREFIX + 'objdump'
|
|
OBJCPY = PREFIX + 'objcopy'
|
|
|
|
DEVICE = ' -march=rv32imc -mabi=ilp32 -DUSE_PLIC -DUSE_M_TIME -DNO_INIT -mcmodel=medany -msmall-data-limit=8 -L. -nostartfiles -lc'
|
|
CFLAGS = DEVICE + ' -std=gnu99 -g'
|
|
CFLAGS += ' -ffunction-sections -fdata-sections -save-temps=obj -D__RT_THREAD__'
|
|
CFLAGS += ' -Wformat=2 -Wall'
|
|
CFLAGS += ' -Wno-unused-parameter -Wno-unused-function -Wno-unused-value'
|
|
CFLAGS += ' -Werror=uninitialized -Werror=maybe-uninitialized'
|
|
CFLAGS += ' -Wstack-usage=1024'
|
|
CFLAGS += ' -Wno-implicit-fallthrough -Wno-cast-function-type -Wno-missing-field-initializers'
|
|
AFLAGS = DEVICE + ' -c -x assembler-with-cpp -D__ASSEMBLY__'
|
|
LFLAGS = DEVICE + ' --specs=nano.specs -Wl,--gc-sections,-cref,-Map=' + MAP_FILE
|
|
LFLAGS += ' -T ' + LINK_FILE
|
|
|
|
CPATH = ''
|
|
LPATH = ''
|
|
|
|
if BUILD == 'debug':
|
|
CFLAGS += ' -O0 -g3'
|
|
AFLAGS += ' -g3'
|
|
else:
|
|
CFLAGS += ' -Os'
|
|
|
|
POST_ACTION = OBJCPY + ' -O binary $TARGET ' + TARGET_NAME + '\n'
|
|
POST_ACTION += SIZE + ' $TARGET\n'
|