From 052e1bf4b7af09155371e4cc3f76100849a7ddae Mon Sep 17 00:00:00 2001 From: Roman Iten Date: Tue, 11 Feb 2025 12:08:00 +0100 Subject: [PATCH] tool/run: introduce 'have_recipe'-proc This procedure is useful for run scripts that depend for example on a board support package that is provided only for certain boards, possibly by a third-party repo. Issue #5432 --- tool/run/run | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tool/run/run b/tool/run/run index cd94486bd7..6e8ef78840 100755 --- a/tool/run/run +++ b/tool/run/run @@ -955,6 +955,14 @@ proc have_include { name } { return false } +## +# Check if a specific depot recipe is available +# +proc have_recipe { name } { + set hash_rel_path "recipes/$name/hash" + return [expr {[repository_contains $hash_rel_path] != ""}] +} + ## # Override the exit procedure