manifest.xml 中 include 的相对路径计算有问题。
icemanpro opened this issue · 4 comments
用 repo 时
repo init --no-clone-bundle --repo-url https://gitlab.com/firefly-linux/git-repo.git -u https://gitlab.com/firefly-linux/manifests.git -b master -m rk3288_linux_release.xml
repo sync -c --no-tags
正常。
用 git-repo 时
git-repo init --no-clone-bundle -u https://gitlab.com/firefly-linux/manifests.git -b master -m rk3288_linux_release.xml
git-repo sync -c --no-tags
报错:
FATAL: stat /home/firefly/proj/rk3288_linux_release_v2.5.0a_20230510/.repo/rk3288/rk3288_linux_bsp_release_20220304_v2.5.0a.xml: no such file or directory
把你的 manifest xml 贴出来啊。
同样的问题,我通过以下命令下载:
git repo init -u https://gitee.com/openharmony/manifest.git -b master
.repo 目录中为:manifest.xml manifests manifests.git
其中 manifest.xml 为:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote fetch="." name="origin" review="https://openharmony.gitee.com/openharmony/"/>
<default remote="origin" revision="master" sync-j="4" />
<include name="ohos/ohos.xml" />
<include name="chipsets/all.xml" />
</manifest>
执行: git repo sync -c
报错如下:
FATAL: stat /home/mupceet/openharmony/.repo/ohos/ohos.xml: no such file or directory
原因看起来就是如 @socyno 所述。
同样的问题,我通过以下命令下载:
git repo init -u https://gitee.com/openharmony/manifest.git -b master
.repo 目录中为:manifest.xml manifests manifests.git
其中 manifest.xml 为:
<?xml version="1.0" encoding="UTF-8"?> <manifest> <remote fetch="." name="origin" review="https://openharmony.gitee.com/openharmony/"/> <default remote="origin" revision="master" sync-j="4" /> <include name="ohos/ohos.xml" /> <include name="chipsets/all.xml" /> </manifest>
执行:
git repo sync -c
报错如下:FATAL: stat /home/mupceet/openharmony/.repo/ohos/ohos.xml: no such file or directory
原因看起来就是如 @socyno 所述。
确实存在这个问题,它的相对位置不是manifests文件夹内,而是manifests外。