diff mbox series

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

Message ID 20250929125616.1751116-7-alex.kanavin@gmail.com
State New
Headers show
Series [01/10] bitbake-setup: add the initial implementation | expand

Commit Message

Alexander Kanavin Sept. 29, 2025, 12:56 p.m. UTC
From: Richard Purdie <richard.purdie@linuxfoundation.org>

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 b07bf2eb7..7067cbd4f 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')]