Bitbake (Yocto) git fetch Authentication using URI

How do I create a bitbake recipe that clones a git repository with built-in authentication (in url)?

What is the format of SRC_URI?

+3


source to share


1 answer


For example:

SRC_URI = "git://<host>/path/to/<repo>.git;protocol=<protocol>;user=<user>:<password>;branch=<branch>



Protocol

maybe for example https

+3


source







All Articles