From 148726aac6a48f9d80825feea57da2aa94a9b163 Mon Sep 17 00:00:00 2001 From: Fischertechnik-OpenSource <fischertechnik-opensource@online.de> Date: Wed, 12 Feb 2025 11:47:32 +0100 Subject: [PATCH] Update to 3.1.8 --- repo.conf | 5 +++-- scripts/lib/repo.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/repo.conf b/repo.conf index c2021dc..eef4fc6 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 3f1504b..d18a570 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") -- GitLab