summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--documentation/ref-manual/variables.rst19
1 files changed, 19 insertions, 0 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index b6d3142b98..00ab881011 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -4583,6 +4583,25 @@ system and gives an overview of their function and contents.
4583 even if the toolchain's binaries are strippable, there are other files 4583 even if the toolchain's binaries are strippable, there are other files
4584 needed for the build that are not strippable. 4584 needed for the build that are not strippable.
4585 4585
4586 :term:`INHIBIT_UPDATERCD_BBCLASS`
4587 Prevents the :ref:`ref-classes-update-rc.d` class from automatically
4588 installing and registering SysV init scripts for packages.
4589
4590 When a recipe inherits the :ref:`ref-classes-update-rc.d` class, init
4591 scripts are typically installed and registered for the packages listed in
4592 :term:`INITSCRIPT_PACKAGES`. This ensures that the relevant
4593 services are started and stopped at the appropriate runlevels using the
4594 traditional SysV init system.
4595
4596 To prevent the build system from adding these scripts and configurations
4597 automatically, set the :term:`INHIBIT_UPDATERCD_BBCLASS` variable as follows::
4598
4599 INHIBIT_UPDATERCD_BBCLASS = "1"
4600
4601 By default, the value of :term:`INHIBIT_UPDATERCD_BBCLASS` is empty. Setting
4602 it to "0" does not disable inhibition. Only the empty string will disable
4603 inhibition.
4604
4586 :term:`INIT_MANAGER` 4605 :term:`INIT_MANAGER`
4587 Specifies the system init manager to use. Available options are: 4606 Specifies the system init manager to use. Available options are:
4588 4607