chore: migrate project into clean repository

This commit is contained in:
yuuux
2026-08-13 16:50:52 +08:00
commit d1d25a09e7
27405 changed files with 9422808 additions and 0 deletions

12
arcs-sdk/prepare_toolchain.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
TOOLCHAIN_URL=https://listenai-firmware-delivery.oss-cn-beijing.aliyuncs.com/ARCS/tools/toolchain/linux-amd64/nuclei_riscv_newlibc_prebuilt_linux64_2025.02.tar.bz2
DOWNLOAD_DIR=listenai-dev-tools
mkdir -p ${DOWNLOAD_DIR}
wget -O ${DOWNLOAD_DIR}/nuclei-toolchain.tar.bz2 ${TOOLCHAIN_URL}
tar -xvjf ${DOWNLOAD_DIR}/nuclei-toolchain.tar.bz2 -C ${DOWNLOAD_DIR}
rm -rf ${DOWNLOAD_DIR}/nuclei-toolchain.tar.bz2