Yocto 克隆 GitLab 回购

Yocto Clone GitLab Repo

我可以使用从 GitHub 中提取的代码成功构建图像,该项目将托管在 GitLab 上。我在 GitLab 上托管了相同的代码,但我无法让 Yocto 找到我的存储库。我尝试了很多东西

SRC_URI = "git://git@gitlab.com/MichaelBMiner:~/simpledaemon_gl.git;protocol=https"
SRC_URI = "git://git@gitlab.com/MichaelBMiner:~/simpledaemon_gl.git;protocol=http"
SRC_URI = "git://git@gitlab.com/MichaelBMiner/simpledaemon_gl.git;protocol=https"
SRC_URI = "git://git@gitlab.com/MichaelBMiner/simpledaemon_gl.git;protocol=http"
SRC_URI = "git://git@gitlab.com/MichaelBMiner/simpledaemon_gl.git"
SRC_URI = "git://gitlab.com/MichaelBMiner/simpledaemon_gl.git;protocol=https"

我不确定我错过了什么,但似乎没有任何效果。我查看了 https://git.yoctoproject.org/poky/plain/bitbake/lib/bb/fetch2/git.py 文档,支持 GitLab。我找不到任何已知的 bugs/issues.

SRC_URI = "git://gitlab.com/MichaelBMiner/simpledaemon_gl.git;protocol=https;branch=main"