如何制作一个bitbake配方,用内置身份验证(到url中)克隆git repo?SRC_URI的格式是什么?
p4rjhz4m1#
例如:SRC_URI = "git://<host>/path/to/<repo>.git;protocol=<protocol>;user=<user>:<password>;branch=<branch>例如,协议可以是https
SRC_URI = "git://<host>/path/to/<repo>.git;protocol=<protocol>;user=<user>:<password>;branch=<branch>
https
zmeyuzjn2#
根据the Bitbake User Manual,正确的格式为“://[user:[password]@]/;”例如,你可以这样做"git://myusername:12345@git.somehost.com/myrepo;分支=主“注:“/”和“;”是密码中不能使用的特殊字符。
2条答案
按热度按时间p4rjhz4m1#
例如:
SRC_URI = "git://<host>/path/to/<repo>.git;protocol=<protocol>;user=<user>:<password>;branch=<branch>
例如,协议可以是
https
zmeyuzjn2#
根据the Bitbake User Manual,正确的格式为
“://[user:[password]@]/;”
例如,你可以这样做
"git://myusername:12345@git.somehost.com/myrepo;分支=主“
注:“/”和“;”是密码中不能使用的特殊字符。