diff --git a/repo.conf b/repo.conf index c2021dc135a7e87b662bdb23e40df4dd9bdbf765..eef4fc6b2924c02aa36dd28f9ec0c02ed0ae94d9 100644 --- a/repo.conf +++ b/repo.conf @@ -1,6 +1,7 @@ [build-repos] default = build-exceet-rocko -customer = {GIT_SERVER}/txt40/ +customer = {GIT_SERVER}/{CI_PROJECT_NAMESPACE}/ exceet = {GIT_SERVER}:yocto-exceet/ -ktn = {GIT_SERVER}/txt40/yocto-ktn/ +ktn = {GIT_SERVER}:yocto-ktn/ stm32mp = {GIT_SERVER}:stm32mp/ +#uri_search_list= {GIT_SERVER}:genisys/ diff --git a/scripts/lib/repo.py b/scripts/lib/repo.py index 3f1504bbaed38511ae13ff8699e1228c3c0ffd25..d18a570c7ae45029674128a8a5525ec88efbd17a 100644 --- a/scripts/lib/repo.py +++ b/scripts/lib/repo.py @@ -239,7 +239,7 @@ def loadBuildModule(f, b, remote_repo=None, offline=False): # Try with an existing local build repository first m = Module(None, b) if m and (offline or m.is_valid_uri()): - info("Using local build repo URI {}".format(m.uri())) + info("Using build repo URI {}".format(m.uri())) if remote_repo and remote_repo not in m.uri(): warn("Git remote of local build repo doesn't match specified " \ "remote repo name")