下載 android 4.0.3 源碼問題一則
使用下面命令:
repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.3_r1
提示
No command 'repo' found, did you mean:
?Command 'rep' from package 'rep' (universe)
?Command 'repl' from package 'nmh' (universe)
?Command 'repl' from package 'mailutils-mh' (universe)
repo: command not found
估計(jì)是沒有 repo 命令,只能安裝了,在網(wǎng)上找了一個(gè)方法:
curl http://android.git.kernel.org/repo > ~/bin/repo
提示:
bash: /root/bin/repo: No such file or directory
奇怪啦,沒有這個(gè)文件呢?
后來想了一下,這個(gè)個(gè)會(huì)不會(huì)是 GCC 安裝的那個(gè)目錄呢,
sudo curl http://android.git.kernel.org/repo > /arm-2009q3/bin/repo
哈哈,成功了!~!
? % Total ? ?% Received % Xferd ?Average Speed ? Time ? ?Time ? ? Time ?Current
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?Dload ?Upload ? Total ? Spent ? ?Left ?Speed
122 ? 244 ?122 ? 244 ? ?0 ? ? 0 ? ?271 ? ? ?0 --:--:-- --:--:-- --:--:-- ?1270
再執(zhí)行下載,提示
bash: /bin/repo: Permission denied
權(quán)限不對(duì),
進(jìn)入?/arm-2009q3/bin/repo
chmod 777 repo
再執(zhí)行
repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.3_r1
repo sync
沒反應(yīng),
待續(xù)~!
繼續(xù)
PATH=/arm-2009q3/bin:$PATH
設(shè)置這個(gè)路徑。
然后
repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.3_r1
oh, my god !
終于開始下載了~!