From 3d48b2a7b189b20a83e0b3098cab42540f5d050f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 29 Sep 2025 14:56:13 +0200 Subject: [PATCH] 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: e031b75b5b92552d812d2305a35ce90eb6c68b78) Signed-off-by: Richard Purdie --- bitbake/bin/bitbake-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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')]