# manifests **Repository Path**: codebug8/manifests ## Basic Information - **Project Name**: manifests - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-08-30 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Buildroot SDK ------ # 配置repo ## 下载repo 根据您的办公网络情况,从以下链接获取repo工具。 ``` git clone https://gerrit.googlesource.com/git-repo (谷歌官方源) git clone https://mirrors.tuna.tsinghua.edu.cn/git/git-repo (国内清华源) git clone https://gerrit-googlesource.lug.ustc.edu.cn/git-repo (国内中科大源) ``` ## 配置REPO_URL 在到构建和谐社会的前提下,需要修改REPO_URL,可参考以下修改: vim repo ``` ## REPO_URL = 'https://gerrit-googlesource.proxy.ustclug.org/git-repo' REPO_URL = 'https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/' ``` ## 配置好的repo ``` https://git.dev.tencent.com/codebug8/repo.git ``` # 初始化仓库 repo init ## mini437x开发板 获取源码 ``` $ mkdir -p mini437x $ cd mini437x $ repo init -u https://dev.tencent.com/u/weidongshan/p/manifests/git -b linux-sdk -m ti437x/mini437x_linux_release.xml --no-repo-verify ``` ## firefly-rk3288开发板 获取源码 ``` $ mkdir -p firefly-rk3288 $ cd firefly-rk3288 $ repo init -u https://dev.tencent.com/u/weidongshan/p/manifests/git -b linux-sdk -m rk3288/firefly-rk3288_linux_release.xml --no-repo-verify ``` ## roc-rk3399开发板 获取源码 ``` $ mkdir -p roc-rk3399 $ cd roc-rk3399 $ repo init -u https://dev.tencent.com/u/weidongshan/p/manifests/git -b linux-sdk -m rk3399/roc-rk3399_linux_release.xml --no-repo-verify ``` ## ti335x开发板 获取源码 ``` $ mkdir -p ti335x $ cd ti335x $ repo init -u https://dev.tencent.com/u/weidongshan/p/manifests/git -b linux-sdk -m ti335x/ti335x_linux_release.xml --no-repo-verify ``` # 同步代码repo sync ``` $ repo sync -j4 ``` ``` Fetching projects: 100% (3/3) Fetching projects: 100% (3/3), done. Checking out files: 100% (10246/10246), done. Checking out files: 100% (56938/56938), done.es: 18% (10547/56938) Syncing work tree: 100% (3/3), done ``` # 代码目录 查看下载好的源码目录 ``` ls -l ```