From 6537174e1c578ab3d92747af3f6fe8ea5b514017 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Wed, 18 Mar 2026 19:56:36 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Tweak=20config=20branch=20choice?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buildroot/bin/use_example_configs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/buildroot/bin/use_example_configs b/buildroot/bin/use_example_configs index b017205bdd..c4ba04e96f 100755 --- a/buildroot/bin/use_example_configs +++ b/buildroot/bin/use_example_configs @@ -103,10 +103,16 @@ def main(): cref = mbranch elif mbranch.startswith("lts-"): cref = mbranch.replace("lts-", "latest-") + elif mbranch.endswith("bugfix-2.1.x"): + cref = "bugfix-2.1.x" elif mbranch.endswith("-2.1.x") or mbranch == "2.1.x": cref = "latest-2.1.x" + elif mbranch.endswith("bugfix-2.0.x"): + cref = "bugfix-2.0.x" elif mbranch.endswith("-2.0.x") or mbranch == "2.0.x": cref = "latest-2.0.x" + elif mbranch.endswith("bugfix-1.1.x"): + cref = "bugfix-1.1.x" elif mbranch.endswith("-1.1.x") or mbranch == "1.1.x": cref = "latest-1.1.x" elif mbranch == "1.0.x":