diff options
author | Simone Weiß <simone.p.weiss@posteo.com> | 2023-12-10 05:35:55 +0000 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-12-21 06:18:23 -1000 |
commit | 815ef8ecb3d1c310a53afb54ff16e34b327768bf (patch) | |
tree | 098326f80d1acb730907d04e5011e80f2db9bfef | |
parent | ad02f70585886f50d15378a84c566e3e3d10816b (diff) | |
download | poky-815ef8ecb3d1c310a53afb54ff16e34b327768bf.tar.gz |
manuals: brief-yoctoprojectqs: align variable order with default local.conf
Align the order from `BB_SIGNATURE_HANDLER` to `SSTATE_MIRRORS` in Quick Build
with the order in the default local conf. While trivial it is easier to find,
if the order matches.
(From yocto-docs rev: 80af32ab4d5ff4e7ee834477da748f2ba5bdb6de)
Signed-off-by: Simone Weiß <simone.p.weiss@posteo.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | documentation/brief-yoctoprojectqs/index.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/brief-yoctoprojectqs/index.rst b/documentation/brief-yoctoprojectqs/index.rst index df8d75edc2..61c5cbec36 100644 --- a/documentation/brief-yoctoprojectqs/index.rst +++ b/documentation/brief-yoctoprojectqs/index.rst | |||
@@ -251,10 +251,10 @@ an entire Linux distribution, including the toolchain, from source. | |||
251 | To use such mirrors, uncomment the below lines in your ``conf/local.conf`` | 251 | To use such mirrors, uncomment the below lines in your ``conf/local.conf`` |
252 | file in the :term:`Build Directory`:: | 252 | file in the :term:`Build Directory`:: |
253 | 253 | ||
254 | BB_SIGNATURE_HANDLER = "OEEquivHash" | ||
255 | BB_HASHSERVE = "auto" | ||
256 | BB_HASHSERVE_UPSTREAM = "hashserv.yocto.io:8687" | 254 | BB_HASHSERVE_UPSTREAM = "hashserv.yocto.io:8687" |
257 | SSTATE_MIRRORS ?= "file://.* http://cdn.jsdelivr.net/yocto/sstate/all/PATH;downloadfilename=PATH" | 255 | SSTATE_MIRRORS ?= "file://.* http://cdn.jsdelivr.net/yocto/sstate/all/PATH;downloadfilename=PATH" |
256 | BB_HASHSERVE = "auto" | ||
257 | BB_SIGNATURE_HANDLER = "OEEquivHash" | ||
258 | 258 | ||
259 | #. **Start the Build:** Continue with the following command to build an OS | 259 | #. **Start the Build:** Continue with the following command to build an OS |
260 | image for the target, which is ``core-image-sato`` in this example: | 260 | image for the target, which is ``core-image-sato`` in this example: |