diff options
| author | Alexander Kanavin <alex@linutronix.de> | 2025-09-29 14:56:10 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-10-07 00:05:39 +0100 |
| commit | 6a3f79e3db22f5e97e08bf67b187a60e6c9b0a58 (patch) | |
| tree | d4c0415cf0c46effcbad84b526eb50788e86ea32 | |
| parent | 5e4774fa45ff95015901474c3b10905152172226 (diff) | |
| download | poky-6a3f79e3db22f5e97e08bf67b187a60e6c9b0a58.tar.gz | |
bitbake: cooker: adjust the error message about missing websockets module to mention bitbake-setup
(Bitbake rev: d857ed2044c8153c69bd3e275cfc8a9b6a8cdc5e)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | bitbake/lib/bb/cooker.py | 5 |
1 files changed, 4 insertions, 1 deletions
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: | |||
| 320 | except ImportError as e: | 320 | except ImportError as e: |
| 321 | bb.fatal(""""Unable to use hash equivalence server at '%s' due to missing or incorrect python module: | 321 | bb.fatal(""""Unable to use hash equivalence server at '%s' due to missing or incorrect python module: |
| 322 | %s | 322 | %s |
| 323 | 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). | 323 | Please install the needed module on the build host, or use an environment containing it: |
| 324 | - if you are using bitbake-setup, run 'bitbake-setup install-buildtools' | ||
| 325 | - openembedded-core layer contains 'scripts/install-buildtools' that can also be used | ||
| 326 | - or set up pip venv | ||
| 324 | 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.""" | 327 | 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.""" |
| 325 | % (upstream, repr(e))) | 328 | % (upstream, repr(e))) |
| 326 | except ConnectionError as e: | 329 | except ConnectionError as e: |
