diff mbox series

[1/2] brief-yoctoprojectqs/index.rst: update the bitbake clone command

Message ID 20251114-update-bbsetup-doc-v1-1-07e623b8ad2a@bootlin.com
State Accepted
Headers show
Series bitbake-setup doc updates (yocto-docs) | expand

Commit Message

Antonin Godard Nov. 14, 2025, 11:18 a.m. UTC
* Clone on the master branch for now, as the current tag is pointing to
  a version where bitbake-setup does not exist.
* Clone the bitbake repository with its default name. Some users are
  likely to already have bitbake cloned under this name, and with this
  change they'll still be able to copy the command listed in this guide.
* Use https:// instead of git:// for cloning.

Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
---
 documentation/brief-yoctoprojectqs/index.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/documentation/brief-yoctoprojectqs/index.rst b/documentation/brief-yoctoprojectqs/index.rst
index ebceecabf..2a7bd575c 100644
--- a/documentation/brief-yoctoprojectqs/index.rst
+++ b/documentation/brief-yoctoprojectqs/index.rst
@@ -97,13 +97,13 @@  the bitbake repository.
 
 .. code-block:: shell
 
-   $ git clone -b &DISTRO_REL_LATEST_TAG; git://git.openembedded.org/bitbake bitbake-setup
+   $ git clone https://git.openembedded.org/bitbake
 
 Setup a build environment with the following command:
 
 .. code-block:: shell
 
-   $ ./bitbake-setup/bin/bitbake-setup init
+   $ ./bitbake/bin/bitbake-setup init
 
 By default, this will setup a top directory in ``$HOME/bitbake-builds``.
 
@@ -112,7 +112,7 @@  current directory, you can set it with the :ref:`bitbake:ref-bbsetup-command-set
 
 .. code-block:: shell
 
-   $ ./bitbake-setup/bin/bitbake-setup settings set --global default top-dir-prefix $PWD
+   $ ./bitbake/bin/bitbake-setup settings set --global default top-dir-prefix $PWD
 
 .. note::