summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2020-07-24 17:41:37 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-17 10:09:33 +0100
commit4bf6fc5281d1976ad7113c91a93995406cfab429 (patch)
tree66733a6e0ca50aa985257e2236160e805ebc0a74 /documentation/ref-manual
parent7b87ca796a97628b2e83e7b43f2a9a9a81039972 (diff)
downloadpoky-4bf6fc5281d1976ad7113c91a93995406cfab429.tar.gz
sphinx: fix custom term links
Some term links have custom 'text', and require manual update, since they were not caught by the generic Python regexp. (From yocto-docs rev: 519355ba9daf7630e8d477b2f6f511be51fd8b2e) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual')
-rw-r--r--documentation/ref-manual/migration.rst4
-rw-r--r--documentation/ref-manual/ref-tasks.rst6
-rw-r--r--documentation/ref-manual/ref-variables.rst4
3 files changed, 7 insertions, 7 deletions
diff --git a/documentation/ref-manual/migration.rst b/documentation/ref-manual/migration.rst
index b8d27f3325..1d4d53647f 100644
--- a/documentation/ref-manual/migration.rst
+++ b/documentation/ref-manual/migration.rst
@@ -1366,10 +1366,10 @@ release notes
1366Kernel Module Autoloading 1366Kernel Module Autoloading
1367------------------------- 1367-------------------------
1368 1368
1369The ```module_autoload_*`` <#var-module_autoload>`__ variable is now 1369The :term:`module_autoload_* <module_autoload>` variable is now
1370deprecated and a new 1370deprecated and a new
1371:term:`KERNEL_MODULE_AUTOLOAD` variable 1371:term:`KERNEL_MODULE_AUTOLOAD` variable
1372should be used instead. Also, ```module_conf_*`` <#var-module_conf>`__ 1372should be used instead. Also, :term:`module_conf_* <module_conf>`
1373must now be used in conjunction with a new 1373must now be used in conjunction with a new
1374:term:`KERNEL_MODULE_PROBECONF` variable. 1374:term:`KERNEL_MODULE_PROBECONF` variable.
1375The new variables no longer require you to specify the module name as 1375The new variables no longer require you to specify the module name as
diff --git a/documentation/ref-manual/ref-tasks.rst b/documentation/ref-manual/ref-tasks.rst
index aa7c0df552..f3c698ba98 100644
--- a/documentation/ref-manual/ref-tasks.rst
+++ b/documentation/ref-manual/ref-tasks.rst
@@ -377,12 +377,12 @@ information.
377Stages (copies) a subset of the files installed by the 377Stages (copies) a subset of the files installed by the
378:ref:`ref-tasks-install` task into the appropriate 378:ref:`ref-tasks-install` task into the appropriate
379sysroot. For information on how to access these files from other 379sysroot. For information on how to access these files from other
380recipes, see the ```STAGING_DIR*`` <#var-STAGING_DIR_HOST>`__ variables. 380recipes, see the :term:`STAGING_DIR* <STAGING_DIR_HOST>` variables.
381Directories that would typically not be needed by other recipes at build 381Directories that would typically not be needed by other recipes at build
382time (e.g. ``/etc``) are not copied by default. 382time (e.g. ``/etc``) are not copied by default.
383 383
384For information on what directories are copied by default, see the 384For information on what directories are copied by default, see the
385```SYSROOT_DIRS*`` <#var-SYSROOT_DIRS>`__ variables. You can change 385:term:`SYSROOT_DIRS* <SYSROOT_DIRS>` variables. You can change
386these variables inside your recipe if you need to make additional (or 386these variables inside your recipe if you need to make additional (or
387fewer) directories available to other recipes at build time. 387fewer) directories available to other recipes at build time.
388 388
@@ -451,7 +451,7 @@ section for information on checking the upgrade status of a recipe.
451 451
452To build the ``checkpkg`` task, use the ``bitbake`` command with the 452To build the ``checkpkg`` task, use the ``bitbake`` command with the
453"-c" option and task name: $ bitbake core-image-minimal -c checkpkg By 453"-c" option and task name: $ bitbake core-image-minimal -c checkpkg By
454default, the results are stored in ```$LOG_DIR`` <#var-LOG_DIR>`__ (e.g. 454default, the results are stored in :term:`$LOG_DIR <LOG_DIR>` (e.g.
455``$BUILD_DIR/tmp/log``). 455``$BUILD_DIR/tmp/log``).
456 456
457.. _ref-tasks-checkuri: 457.. _ref-tasks-checkuri:
diff --git a/documentation/ref-manual/ref-variables.rst b/documentation/ref-manual/ref-variables.rst
index 3eae836fd6..473b672b76 100644
--- a/documentation/ref-manual/ref-variables.rst
+++ b/documentation/ref-manual/ref-variables.rst
@@ -1473,7 +1473,7 @@ system and gives an overview of their function and contents.
1473 assignment: DEPENDS = "bar" The practical effect of the previous 1473 assignment: DEPENDS = "bar" The practical effect of the previous
1474 assignment is that all files installed by bar will be available in 1474 assignment is that all files installed by bar will be available in
1475 the appropriate staging sysroot, given by the 1475 the appropriate staging sysroot, given by the
1476 ```STAGING_DIR*`` <#var-STAGING_DIR>`__ variables, by the time the 1476 :term:`STAGING_DIR* <STAGING_DIR>` variables, by the time the
1477 :ref:`ref-tasks-configure` task for ``foo`` runs. 1477 :ref:`ref-tasks-configure` task for ``foo`` runs.
1478 This mechanism is implemented by having ``do_configure`` depend on 1478 This mechanism is implemented by having ``do_configure`` depend on
1479 the :ref:`ref-tasks-populate_sysroot` task of 1479 the :ref:`ref-tasks-populate_sysroot` task of
@@ -3599,7 +3599,7 @@ system and gives an overview of their function and contents.
3599 expects to find ``module_conf_``\ modname values that specify 3599 expects to find ``module_conf_``\ modname values that specify
3600 configuration for each of the modules. For information on how to 3600 configuration for each of the modules. For information on how to
3601 provide those module configurations, see the 3601 provide those module configurations, see the
3602 ```module_conf_*`` <#var-module_conf>`__ variable. 3602 :term:`module_conf_* <module_conf>` variable.
3603 3603
3604 KERNEL_PATH 3604 KERNEL_PATH
3605 The location of the kernel sources. This variable is set to the value 3605 The location of the kernel sources. This variable is set to the value