Loading

AOSP学习

源码下载

由于AOSP源码由多个项目组成,这篇博客中使用python脚本下载。

import xml.dom.minidom
import os
from subprocess import call

# 1. 修改为源码要保存的路径
rootdir = "D:/projects/AOSP/code_4.2.2_r1"

# 2. 设置 git 安装的路径
git = "D:/devtools/Git/bin/git.exe"

# 3. 修改为第一步中 manifest 中 default.xml 保存的路径
dom = xml.dom.minidom.parse("D:/projects/AOSP/manifest/default.xml")
root = dom.documentElement

# prefix = git + " clone https://android.googlesource.com/"
# 4. 没有梯子使用清华源下载
prefix = git + " clone --depth 1 https://aosp.tuna.tsinghua.edu.cn/"
suffix = ".git"

if not os.path.exists(rootdir):
    print(f"create folder:{rootdir}")
    os.mkdir(rootdir)

for node in root.getElementsByTagName("project"):
    os.chdir(rootdir)
    d = node.getAttribute("path")
    last = d.rfind("/")
    if last != -1:
        d = rootdir + "/" + d[:last]
        if not os.path.exists(d):
            os.makedirs(d)
        os.chdir(d)
    cmd = prefix + node.getAttribute("name") + suffix
    print(cmd)
    call(cmd)

posted @ 2023-03-09 11:08  徐影魔  阅读(25)  评论(0编辑  收藏  举报