I have a new meta layer which contains a number of recipes that fetch and build proprietary packages. At my end, the source for all these packages are hosted on a git server.
The recipes fetch the sources using the git fetcher, i.e., as follows:
SRC_URI = "git://<internal-server-url>/<project>
The <internal-server-url>
is something that my customer cannot see (the server is internal and can't be reached from external world).
Instead, customer has their own git server. For customer the server
SRC_URI = "git://<customer-server-url>/<project>
Is it possible to have the SRC_URI
in the recipes in such a manner that customers do not have to edit and change the URI in the SRC_URI variable?
P.S: Using yocto (Jethro)