2025-02-15 23:38:35 +09:00
|
|
|
#!/bin/bash
|
|
|
|
|
# SPDX-FileCopyrightText: 2024 M5Stack Technology CO LTD
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
2025-05-20 15:56:01 +08:00
|
|
|
export EXT_BOARD_NAME="_AX630C_LLM"
|
2025-02-15 23:38:35 +09:00
|
|
|
|
|
|
|
|
clone_buildroot() {
|
|
|
|
|
if [ -d '../buildroot' ] ; then
|
2025-05-20 15:56:01 +08:00
|
|
|
[ -d 'buildroot' ] || cp -r ../buildroot buildroot
|
2025-02-15 23:38:35 +09:00
|
|
|
else
|
|
|
|
|
[ -d 'buildroot' ] || git clone https://github.com/bootlin/buildroot.git -b st/2023.02.10
|
|
|
|
|
fi
|
2025-05-20 15:56:01 +08:00
|
|
|
[ -d 'buildroot' ] || { echo "not found buildroot" && exit -1; }
|
|
|
|
|
pushd buildroot
|
|
|
|
|
hostname=$(hostname)
|
|
|
|
|
if [ "$hostname" = "nihao-z690" ]; then
|
|
|
|
|
[ -f 'dl.7z' ] || wget https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/linux/llm/dl.7z
|
|
|
|
|
[ -d 'dl' ] || 7z x dl.7z -odl
|
|
|
|
|
[ -d 'dl' ] || { echo "not found dl" && exit -1; }
|
|
|
|
|
fi
|
|
|
|
|
popd
|
2025-02-15 23:38:35 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
make_buildroot() {
|
|
|
|
|
cd buildroot
|
|
|
|
|
make BR2_EXTERNAL=../../.. m5stack_module_llm_4_19_defconfig
|
|
|
|
|
[[ -v ROOTFS_SIZE ]] && sed -i 's/^\(BR2_TARGET_ROOTFS_EXT2_SIZE=\).*$/\1"'"${ROOTFS_SIZE}"'"/' .config
|
|
|
|
|
make -j `nproc`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sudo apt install debianutils sed make binutils build-essential gcc g++ bash patch gzip bzip2 perl tar cpio unzip rsync file bc git cmake p7zip-full python3 python3-pip expect libssl-dev qemu-user-static android-sdk-libsparse-utils -y
|
|
|
|
|
|
|
|
|
|
fun_lists=("clone_buildroot" "make_buildroot")
|
|
|
|
|
|
|
|
|
|
[ -d 'build_Module_LLM_buildroot' ] || mkdir build_Module_LLM_buildroot
|
|
|
|
|
pushd build_Module_LLM_buildroot
|
|
|
|
|
for item in "${fun_lists[@]}"; do
|
|
|
|
|
$item
|
|
|
|
|
ret=$?
|
|
|
|
|
[ "$ret" == "0" ] || exit $ret
|
|
|
|
|
done
|
|
|
|
|
popd
|
|
|
|
|
|