diff options
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r-- | documentation/dev-manual/common-tasks.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst index 2ae7874513..9950ad364c 100644 --- a/documentation/dev-manual/common-tasks.rst +++ b/documentation/dev-manual/common-tasks.rst | |||
@@ -2551,7 +2551,7 @@ doing the following: | |||
2551 | ``${``\ :term:`S`\ ``}``. | 2551 | ``${``\ :term:`S`\ ``}``. |
2552 | 2552 | ||
2553 | If ``${S}`` might contain a Makefile, or if you inherit some class | 2553 | If ``${S}`` might contain a Makefile, or if you inherit some class |
2554 | that replaces ``do_configure`` and ``do_compile`` with custom | 2554 | that replaces :ref:`ref-tasks-configure` and ``do_compile`` with custom |
2555 | versions, then you can use the | 2555 | versions, then you can use the |
2556 | ``[``\ :ref:`noexec <bitbake-user-manual/bitbake-user-manual-metadata:variable flags>`\ ``]`` | 2556 | ``[``\ :ref:`noexec <bitbake-user-manual/bitbake-user-manual-metadata:variable flags>`\ ``]`` |
2557 | flag to turn the tasks into no-ops, as follows:: | 2557 | flag to turn the tasks into no-ops, as follows:: |
@@ -2881,7 +2881,7 @@ you can use as references. | |||
2881 | If you are creating a new kernel recipe, normal recipe-writing rules | 2881 | If you are creating a new kernel recipe, normal recipe-writing rules |
2882 | apply for setting up a :term:`SRC_URI`. Thus, you need to specify any | 2882 | apply for setting up a :term:`SRC_URI`. Thus, you need to specify any |
2883 | necessary patches and set :term:`S` to point at the source code. You need to | 2883 | necessary patches and set :term:`S` to point at the source code. You need to |
2884 | create a ``do_configure`` task that configures the unpacked kernel with | 2884 | create a :ref:`ref-tasks-configure` task that configures the unpacked kernel with |
2885 | a ``defconfig`` file. You can do this by using a ``make defconfig`` | 2885 | a ``defconfig`` file. You can do this by using a ``make defconfig`` |
2886 | command or, more commonly, by copying in a suitable ``defconfig`` file | 2886 | command or, more commonly, by copying in a suitable ``defconfig`` file |
2887 | and then running ``make oldconfig``. By making use of ``inherit kernel`` | 2887 | and then running ``make oldconfig``. By making use of ``inherit kernel`` |
@@ -9594,7 +9594,7 @@ Running Specific Tasks | |||
9594 | 9594 | ||
9595 | Any given recipe consists of a set of tasks. The standard BitBake | 9595 | Any given recipe consists of a set of tasks. The standard BitBake |
9596 | behavior in most cases is: :ref:`ref-tasks-fetch`, ``do_unpack``, ``do_patch``, | 9596 | behavior in most cases is: :ref:`ref-tasks-fetch`, ``do_unpack``, ``do_patch``, |
9597 | ``do_configure``, ``do_compile``, :ref:`ref-tasks-install`, ``do_package``, | 9597 | :ref:`ref-tasks-configure`, ``do_compile``, :ref:`ref-tasks-install`, ``do_package``, |
9598 | ``do_package_write_*``, and :ref:`ref-tasks-build`. The default task is | 9598 | ``do_package_write_*``, and :ref:`ref-tasks-build`. The default task is |
9599 | :ref:`ref-tasks-build` and any tasks on which it depends build first. Some tasks, | 9599 | :ref:`ref-tasks-build` and any tasks on which it depends build first. Some tasks, |
9600 | such as ``do_devshell``, are not part of the default build chain. If you | 9600 | such as ``do_devshell``, are not part of the default build chain. If you |