We're using repo to manage BlueOS kernel project.
Use following command to download and install repo.
export REPO_URL=https://mirrors.tuna.tsinghua.edu.cn/git/git-repo
mkdir -p ~/.local/bin
curl ${REPO_URL} -o ~/.local/bin/repo
chmod +x ~/.local/bin/repo
echo "export REPO_URL=https://mirrors.tuna.tsinghua.edu.cn/git/git-repo" >> ${HOME}/.bashrc
Make sure ${HOME}/.local/bin is in your ${PATH}.
BlueOS kernel project is consisted with multiple repositories. Use folloing command to fetch these repos.
mkdir blueos-dev
cd blueos-dev
repo init -u git@github.com:vivoblueos/manifests.git -b main -m manifest.xml && repo syncNext, please follow instructions on the vivo BlueOS kernel book to build the vivo BlueOS kernel book and start your development career.