From 3b2ed80229f921b044ab14c8a1d0c6bd875672c4 Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Mon, 29 Sep 2025 14:56:10 +0200 Subject: bitbake: cooker: adjust the error message about missing websockets module to mention bitbake-setup (Bitbake rev: d857ed2044c8153c69bd3e275cfc8a9b6a8cdc5e) Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index fb87368f17..03f262ac16 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -320,7 +320,10 @@ class BBCooker: except ImportError as e: bb.fatal(""""Unable to use hash equivalence server at '%s' due to missing or incorrect python module: %s -Please install the needed module on the build host, or use an environment containing it (e.g a pip venv or OpenEmbedded's buildtools tarball). +Please install the needed module on the build host, or use an environment containing it: + - if you are using bitbake-setup, run 'bitbake-setup install-buildtools' + - openembedded-core layer contains 'scripts/install-buildtools' that can also be used + - or set up pip venv You can also remove the BB_HASHSERVE_UPSTREAM setting, but this may result in significantly longer build times as bitbake will be unable to reuse prebuilt sstate artefacts.""" % (upstream, repr(e))) except ConnectionError as e: -- cgit v1.2.3-54-g00ecf