summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlper Ak <alperyasinak1@gmail.com>2025-05-22 21:09:03 +0300
committerSteve Sakoman <steve@sakoman.com>2025-06-02 10:26:30 -0700
commite1f79f066d1b96bef80e8b32aa6f170f8f7f5682 (patch)
tree69d4716789497c3047e51e0a3620237562bd9d6b
parentb292d8f365f7acd2646eb81f55d36a1b42dcf988 (diff)
downloadpoky-e1f79f066d1b96bef80e8b32aa6f170f8f7f5682.tar.gz
ref-manual/variables.rst: document INHIBIT_UPDATERCD_BBCLASS
Fix [YOCTO #15753] (From yocto-docs rev: c808e7a080533d4b4deef318fb36a786ede4fb50) Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> (cherry picked from commit 5f5a406d4acdfcbf655ac014d0d2807056f95291) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
-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