diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 01cfd92222..445ca1750b 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -2082,14 +2082,15 @@
and
INITSCRIPT_PARAMS
variables within your recipe.
- Systemd:
- Systemd was designed to replace SysVinit and to provide
+ systemd:
+ System Management Daemon (systemd) was designed to
+ replace SysVinit and to provide
enhanced management of services.
- For more information on Systemd, see the Systemd
+ For more information on systemd, see the systemd
homepage at
.
- To enable a service using Systemd, your recipe
+ To enable a service using systemd, your recipe
needs to inherit the
systemd
class.
@@ -5340,7 +5341,7 @@
By default, the Yocto Project uses SysVinit as the initialization
manager.
- However, support also exists for Systemd,
+ However, support also exists for systemd,
which is a full replacement for init with
parallel starting of services, reduced shell overhead and other
features that are used by many distributions.
@@ -5349,12 +5350,12 @@
If you want to use SysVinit, you do
not have to do anything.
- But, if you want to use Systemd, you must
+ But, if you want to use systemd, you must
take some steps as described in the following sections.
- Using Systemd Exclusively
+ Using systemd Exclusively
Set the these variables in your distribution configuration
@@ -5387,7 +5388,7 @@
- Using Systemd for the Main Image and Using SysVinit for the Rescue Image
+ Using systemd for the Main Image and Using SysVinit for the Rescue Image
Set the these variables in your distribution configuration
@@ -5398,11 +5399,11 @@
Doing so causes your main image to use the
packagegroup-core-boot.bb recipe and
- Systemd.
+ systemd.
The rescue/minimal image cannot use this package group.
However, it can install SysVinit
and the appropriate packages will have support for both
- Systemd and SysVinit.
+ systemd and SysVinit.
@@ -6014,7 +6015,7 @@
A test name maps directly to a Python module.
Each test module may contain a number of individual tests.
Tests are usually grouped together by the area
- tested (e.g tests for Systemd reside in
+ tested (e.g tests for systemd reside in
meta/lib/oeqa/runtime/systemd.py).