diff mbox series

[3/3] bitbake-setup: Switch to internal default registry files

Message ID 20250922140721.2266610-3-richard.purdie@linuxfoundation.org
State New
Headers show
Series [1/3] bitbake-setup: Allow local registry paths | expand

Commit Message

Richard Purdie Sept. 22, 2025, 2:07 p.m. UTC
Switch the url to be the default internal registry rather than a private
repo which was intended for testing.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 bin/bitbake-setup | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/bin/bitbake-setup b/bin/bitbake-setup
index b07bf2eb7c8..7067cbd4fc9 100755
--- a/bin/bitbake-setup
+++ b/bin/bitbake-setup
@@ -19,7 +19,7 @@  import datetime
 import glob
 import subprocess
 
-default_registry = 'git://github.com/kanavin/bitbake-setup-configurations.git;protocol=https;branch=main;rev=main'
+default_registry = os.path.normpath(os.path.dirname(__file__) + "/../default-registry")
 
 bindir = os.path.abspath(os.path.dirname(__file__))
 sys.path[0:0] = [os.path.join(os.path.dirname(bindir), 'lib')]