summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorAntonin Godard <antonin.godard@bootlin.com>2025-07-15 11:56:40 +0200
committerSteve Sakoman <steve@sakoman.com>2025-07-17 13:57:58 -0700
commit7330c95d85dd94a92de60e646a90c8a67e7ed9ce (patch)
treee7cae8ff9b6e5da46fb076424c3241e8e76d875c /documentation
parent713fd8b46b801b2200aca34edc23b00c5ef4878a (diff)
downloadpoky-walnascar.tar.gz
dev-manual/start.rst: remove shared PERSISTENT_DIR mentionswalnascar
Remove the shared PERSISTENT_DIR mention introduced by 3954eda78f22 ("dev-manual/start.rst: mention that PERSISTENT_DIR should be shared too"), as it should _not_ be shared. Instead recommend setting up a hash equivalence server. (From yocto-docs rev: 98e71db7177257b340f5841bb9d7f8d83296c546) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> (cherry picked from commit f9f1c87424d307d2df60024bc448bd6778605cf8) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/start.rst14
1 files changed, 10 insertions, 4 deletions
diff --git a/documentation/dev-manual/start.rst b/documentation/dev-manual/start.rst
index edeee92719..6cc0f3e9f3 100644
--- a/documentation/dev-manual/start.rst
+++ b/documentation/dev-manual/start.rst
@@ -228,10 +228,16 @@ particular working environment and set of practices.
228 used by developers in the same organization and share the same 228 used by developers in the same organization and share the same
229 source directories on their machines. 229 source directories on their machines.
230 230
231 If the :term:`SSTATE_DIR` directory is shared for multiple developers, 231 - Set up a local :ref:`overview-manual/concepts:Hash Equivalence` server
232 and you are using a :ref:`overview-manual/concepts:Hash Equivalence` 232 with :term:`BB_HASHSERVE` and :term:`BB_SIGNATURE_HANDLER`. A basic setup
233 server with :term:`BB_HASHSERVE`, the :term:`PERSISTENT_DIR` directory 233 would be::
234 (``${TOPDIR}/cache`` by default) should be shared too. 234
235 BB_HASHSERVE = "auto"
236 BB_SIGNATURE_HANDLER = "OEEquivHash"
237
238 See the :ref:`overview-manual/concepts:Hash Equivalence` section of the
239 Yocto Project Overview and Concepts Manual for more details on the hash
240 equivalence feature.
235 241
236 - Set up an Autobuilder and have it populate the sstate cache and 242 - Set up an Autobuilder and have it populate the sstate cache and
237 source directories. 243 source directories.