| Message ID | 20251224-remove-poky-references-v1-49-658a5f4dbde2@bootlin.com |
|---|---|
| State | Superseded |
| Headers | show |
| Series | Remove obsolete poky repo references | expand |
Hi Antonin, On 12/24/25 5:32 PM, Antonin Godard via lists.yoctoproject.org wrote: > Refresh the document now that the Poky repository is obsolete. > > Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> > --- > documentation/ref-manual/system-requirements.rst | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/documentation/ref-manual/system-requirements.rst b/documentation/ref-manual/system-requirements.rst > index a56e683ca..e8d6830b1 100644 > --- a/documentation/ref-manual/system-requirements.rst > +++ b/documentation/ref-manual/system-requirements.rst > @@ -405,8 +405,8 @@ installer and automatically installs the tools for you: > > #. Execute the ``install-buildtools`` script. Here is an example:: > > - $ cd poky > - $ scripts/install-buildtools \ > + $ cd /path/to/project > + $ ./layers/openembedded-core/scripts/install-buildtools \ > --without-extended-buildtools \ > --base-url &YOCTO_DL_URL;/releases/yocto \ > --release yocto-&DISTRO; \ > @@ -420,26 +420,26 @@ installer and automatically installs the tools for you: > To avoid the need of ``sudo`` privileges, the ``install-buildtools`` > script will by default tell the installer to install in:: > > - /path/to/poky/buildtools > + /path/to/project/buildtools > > If your host development system needs the additional tools provided > in the :term:`buildtools-extended` tarball, you can instead execute the > ``install-buildtools`` script with the default parameters:: > > - $ cd poky > + $ cd /path/to/project > $ scripts/install-buildtools uuuuuh... Shouldn't this be ./layers/openembedded-core/scripts/install-buildtools? > > Alternatively if your host development system has a broken ``make`` > version such that you only need a known good version of ``make``, > you can use the ``--make-only`` option:: > > - $ cd poky > + $ cd /path/to/project > $ scripts/install-buildtools --make-only > Ditto. Cheers, Quentin
diff --git a/documentation/ref-manual/system-requirements.rst b/documentation/ref-manual/system-requirements.rst index a56e683ca..e8d6830b1 100644 --- a/documentation/ref-manual/system-requirements.rst +++ b/documentation/ref-manual/system-requirements.rst @@ -405,8 +405,8 @@ installer and automatically installs the tools for you: #. Execute the ``install-buildtools`` script. Here is an example:: - $ cd poky - $ scripts/install-buildtools \ + $ cd /path/to/project + $ ./layers/openembedded-core/scripts/install-buildtools \ --without-extended-buildtools \ --base-url &YOCTO_DL_URL;/releases/yocto \ --release yocto-&DISTRO; \ @@ -420,26 +420,26 @@ installer and automatically installs the tools for you: To avoid the need of ``sudo`` privileges, the ``install-buildtools`` script will by default tell the installer to install in:: - /path/to/poky/buildtools + /path/to/project/buildtools If your host development system needs the additional tools provided in the :term:`buildtools-extended` tarball, you can instead execute the ``install-buildtools`` script with the default parameters:: - $ cd poky + $ cd /path/to/project $ scripts/install-buildtools Alternatively if your host development system has a broken ``make`` version such that you only need a known good version of ``make``, you can use the ``--make-only`` option:: - $ cd poky + $ cd /path/to/project $ scripts/install-buildtools --make-only #. Source the tools environment setup script by using a command like the following:: - $ source /path/to/poky/buildtools/environment-setup-x86_64-pokysdk-linux + $ source /path/to/project/buildtools/environment-setup-x86_64-pokysdk-linux After you have sourced the setup script, the tools are added to ``PATH`` and any other environment variables required to run the
Refresh the document now that the Poky repository is obsolete. Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> --- documentation/ref-manual/system-requirements.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)