Skip to content
This repository has been archived by the owner on Sep 14, 2024. It is now read-only.

Latest commit

 

History

History
94 lines (61 loc) · 2.1 KB

README.md

File metadata and controls

94 lines (61 loc) · 2.1 KB

Build Instructions

Requirements


Compilation Requirements

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

Repository Requirements

To manage the source code, you need to install the repo tool:

  1. Create a directory for the repo binary and add it to your PATH:

    mkdir -p ~/.bin
    export PATH="${HOME}/.bin:${PATH}"
  2. Download the repo script and make it executable:

    curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo
    chmod a+rx ~/.bin/repo
  3. Persist the PATH change by adding it to your shell configuration file (e.g., ~/.bashrc):

    echo 'export PATH="${HOME}/.bin:${PATH}"' >> ~/.bashrc
    source ~/.bashrc

Building the Project


Get the Source Code

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

Build for a Specific Board

  1. Download the toolchain (only required for the first build):

    make dl_toolchain
  2. List all available configurations:

    make list_def
  3. Select a configuration for your board:

    make k230_canmv_defconfig  # Replace with the appropriate defconfig for your board
  4. Start the build process:

    time make log

This process will compile the software tailored to your selected board configuration.

How to Contribute to This Project


This project is open-source and welcomes contributions. For detailed information on how to contribute, please refer to the CONTRIBUTING.md file.