summaryrefslogtreecommitdiffstats
path: root/documentation/adt-manual/adt-prepare.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/adt-manual/adt-prepare.rst')
-rw-r--r--documentation/adt-manual/adt-prepare.rst29
1 files changed, 13 insertions, 16 deletions
diff --git a/documentation/adt-manual/adt-prepare.rst b/documentation/adt-manual/adt-prepare.rst
index 12b1e7918c..27133d21b4 100644
--- a/documentation/adt-manual/adt-prepare.rst
+++ b/documentation/adt-manual/adt-prepare.rst
@@ -50,7 +50,7 @@ for more information.
50 other mentioned benefits had you run the ADT Installer script. 50 other mentioned benefits had you run the ADT Installer script.
51 51
52- *Use the toolchain from within the Build Directory:* If you already 52- *Use the toolchain from within the Build Directory:* If you already
53 have a `Build Directory <&YOCTO_DOCS_DEV_URL;#build-directory>`__, 53 have a :term:`Build Directory`,
54 you can build the cross-toolchain within the directory. However, like 54 you can build the cross-toolchain within the directory. However, like
55 the previous method mentioned, you only get the cross-toolchain and 55 the previous method mentioned, you only get the cross-toolchain and
56 QEMU - you do not get any of the other benefits without taking 56 QEMU - you do not get any of the other benefits without taking
@@ -79,9 +79,8 @@ the tarball using either of these methods:
79 ` <&YOCTO_ADTINSTALLER_DL_URL;>`__ into any directory. 79 ` <&YOCTO_ADTINSTALLER_DL_URL;>`__ into any directory.
80 80
81- *Build the Tarball:* You can use 81- *Build the Tarball:* You can use
82 `BitBake <&YOCTO_DOCS_DEV_URL;#bitbake-term>`__ to generate the 82 :term:`BitBake` to generate the
83 tarball inside an existing `Build 83 tarball inside an existing :term:`Build Directory`.
84 Directory <&YOCTO_DOCS_DEV_URL;#build-directory>`__.
85 84
86 If you use BitBake to generate the ADT Installer tarball, you must 85 If you use BitBake to generate the ADT Installer tarball, you must
87 ``source`` the environment setup script 86 ``source`` the environment setup script
@@ -90,8 +89,8 @@ the tarball using either of these methods:
90 located in the Source Directory before running the ``bitbake`` 89 located in the Source Directory before running the ``bitbake``
91 command that creates the tarball. 90 command that creates the tarball.
92 91
93 The following example commands establish the `Source 92 The following example commands establish the
94 Directory <&YOCTO_DOCS_DEV_URL;#source-directory>`__, check out the 93 :term:`Source Directory`, check out the
95 current release branch, set up the build environment while also 94 current release branch, set up the build environment while also
96 creating the default Build Directory, and run the ``bitbake`` command 95 creating the default Build Directory, and run the ``bitbake`` command
97 that results in the tarball 96 that results in the tarball
@@ -268,8 +267,8 @@ Using BitBake and the Build Directory
268------------------------------------- 267-------------------------------------
269 268
270A final way of making the cross-toolchain available is to use BitBake to 269A final way of making the cross-toolchain available is to use BitBake to
271generate the toolchain within an existing `Build 270generate the toolchain within an existing :term:`Build Directory`.
272Directory <&YOCTO_DOCS_DEV_URL;#build-directory>`__. This method does 271This method does
273not install the toolchain into the default ``/opt`` directory. As with 272not install the toolchain into the default ``/opt`` directory. As with
274the previous method, if you need to install the target sysroot, you must 273the previous method, if you need to install the target sysroot, you must
275do that separately as well. 274do that separately as well.
@@ -280,8 +279,7 @@ Follow these steps to generate the toolchain into the Build Directory:
280 environment setup script (i.e. 279 environment setup script (i.e.
281 ````` <&YOCTO_DOCS_REF_URL;#structure-core-script>`__ or 280 ````` <&YOCTO_DOCS_REF_URL;#structure-core-script>`__ or
282 ```oe-init-build-env-memres`` <&YOCTO_DOCS_REF_URL;#structure-memres-core-script>`__) 281 ```oe-init-build-env-memres`` <&YOCTO_DOCS_REF_URL;#structure-memres-core-script>`__)
283 located in the `Source 282 located in the :term:`Source Directory`.
284 Directory <&YOCTO_DOCS_DEV_URL;#source-directory>`__.
285 283
2862. *Check your Local Configuration File:* At this point, you should be 2842. *Check your Local Configuration File:* At this point, you should be
287 sure that the :term:`MACHINE` 285 sure that the :term:`MACHINE`
@@ -332,8 +330,8 @@ cross-development environment by sourcing the toolchain's environment
332setup script. If you used the ADT Installer or hand-installed 330setup script. If you used the ADT Installer or hand-installed
333cross-toolchain, then you can find this script in the directory you 331cross-toolchain, then you can find this script in the directory you
334chose for installation. For this release, the default installation 332chose for installation. For this release, the default installation
335directory is ````. If you installed the toolchain in the `Build 333directory is ````. If you installed the toolchain in the
336Directory <&YOCTO_DOCS_DEV_URL;#build-directory>`__, you can find the 334:term:`Build Directory`, you can find the
337environment setup script for the toolchain in the Build Directory's 335environment setup script for the toolchain in the Build Directory's
338``tmp`` directory. 336``tmp`` directory.
339 337
@@ -432,8 +430,8 @@ this by including the ``eclipse-debug`` image feature.
432 image features. 430 image features.
433 431
434To include the ``eclipse-debug`` image feature, modify your 432To include the ``eclipse-debug`` image feature, modify your
435``local.conf`` file in the `Build 433``local.conf`` file in the :term:`Build Directory`
436Directory <&YOCTO_DOCS_DEV_URL;#build-directory>`__ so that the 434so that the
437:term:`EXTRA_IMAGE_FEATURES` 435:term:`EXTRA_IMAGE_FEATURES`
438variable includes the "eclipse-debug" feature. After modifying the 436variable includes the "eclipse-debug" feature. After modifying the
439configuration file, you can rebuild the image. Once the image is 437configuration file, you can rebuild the image. Once the image is
@@ -484,8 +482,7 @@ Optionally Building a Toolchain Installer
484========================================= 482=========================================
485 483
486As an alternative to locating and downloading a toolchain installer, you 484As an alternative to locating and downloading a toolchain installer, you
487can build the toolchain installer if you have a `Build 485can build the toolchain installer if you have a :term:`Build Directory`.
488Directory <&YOCTO_DOCS_DEV_URL;#build-directory>`__.
489 486
490.. note:: 487.. note::
491 488