Message ID | 20250922140721.2266610-3-richard.purdie@linuxfoundation.org |
---|---|
State | New |
Headers | show |
Series | [1/3] bitbake-setup: Allow local registry paths | expand |
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')]
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(-)