Ensure your system has all the necessary packages installed:
sudo apt-get install -y --no-install-recommends make autoconf automake bison flex gcc g++ \
gawk libncurses5-dev pkg-config libconfuse-dev libssl-dev python3 python3-pip python-is-python3 \
cmake libyaml-dev scons mtools bzip2 curl git openssh-client rsync dosfstools ca-certificates
Additionally, install Python packages using pip
:
pip3 install pycryptodome gmssl scons==3.1.2
To manage the source code, you need to install the repo
tool:
-
Create a directory for the
repo
binary and add it to yourPATH
:mkdir -p ~/.bin export PATH="${HOME}/.bin:${PATH}"
-
Download the
repo
script and make it executable:curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo chmod a+rx ~/.bin/repo
-
Persist the
PATH
change by adding it to your shell configuration file (e.g.,~/.bashrc
):echo 'export PATH="${HOME}/.bin:${PATH}"' >> ~/.bashrc source ~/.bashrc
Initialize and sync the repository to get download the source code:
repo init -u https://github.com/canmv-k230/manifest -b master --repo-url=https://github.com/canmv-k230/git-repo.git
repo sync
-
Download the toolchain (only required for the first build):
make dl_toolchain
-
List all available configurations:
make list_def
-
Select a configuration for your board:
make k230_canmv_defconfig # Replace with the appropriate defconfig for your board
-
Start the build process:
time make log
This process will compile the software tailored to your selected board configuration.
This project is open-source and welcomes contributions. For detailed information on how to contribute, please refer to the CONTRIBUTING.md file.