repo下载QSDK代码记录

QSDK代码是归档在codeaurora上,代码下载需要用到repo工具
安装repo

安装下载工具git和curl

sudo apt-get install git-core curl

使用curl获取repo :

curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo
chmod +x repo

地址链接: https://mirrors.tuna.tsinghua.edu.cn/help/git-repo/

QSDK的代码路径为git://codeaurora.org/quic/qsdk/releases/manifest/qstak

对应的版本和名称执行repo init

$ repo init -u git://codeaurora.org/quic/qsdk/releases/manifest/qstak -b release -m caf_AU_LINUX_QSDK_RELEASE_BANANA_10.4_C1_TARGET_ALL.2.4.3.1008.089.xml --repo-url=https://mirrors.tuna.tsinghua.edu.cn/git/git-repo
$ repo sync

参考链接: https://blog.csdn.net/yubing_615/article/details/51538377

你可能感兴趣的:(repo下载QSDK代码记录)