summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/bitbake-setup
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-09-29 14:56:13 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-10-06 17:01:09 +0100
commit89e58471e7fca1e2165cf8af381dce18fbaabdb7 (patch)
treefa19a99f69e6b7f418b2cff2dd19a8e2892f0066 /bitbake/bin/bitbake-setup
parentc12c742bebc09e352f8150111ad255eef9199728 (diff)
downloadpoky-89e58471e7fca1e2165cf8af381dce18fbaabdb7.tar.gz
bitbake: bitbake-setup: Switch to internal default registry files
Switch the url to be the default internal registry rather than a private repo which was intended for testing. (Bitbake rev: dd1841a7c3edc2749924370c307ff40ec65f0fe1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin/bitbake-setup')
-rwxr-xr-xbitbake/bin/bitbake-setup2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-setup b/bitbake/bin/bitbake-setup
index b07bf2eb7c..7067cbd4fc 100755
--- a/bitbake/bin/bitbake-setup
+++ b/bitbake/bin/bitbake-setup
@@ -19,7 +19,7 @@ import datetime
19import glob 19import glob
20import subprocess 20import subprocess
21 21
22default_registry = 'git://github.com/kanavin/bitbake-setup-configurations.git;protocol=https;branch=main;rev=main' 22default_registry = os.path.normpath(os.path.dirname(__file__) + "/../default-registry")
23 23
24bindir = os.path.abspath(os.path.dirname(__file__)) 24bindir = os.path.abspath(os.path.dirname(__file__))
25sys.path[0:0] = [os.path.join(os.path.dirname(bindir), 'lib')] 25sys.path[0:0] = [os.path.join(os.path.dirname(bindir), 'lib')]