aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-common-tasks.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2014-04-21 08:33:36 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-21 22:47:11 +0100
commit601d5f1af0ca39e6a2f0dacb93f46faecbac7dfb (patch)
tree15f2f16328dd67a0e53a08207fb211fe946756f6 /documentation/dev-manual/dev-manual-common-tasks.xml
parent3f0a863ad041a83d13faece4a4ec4760209880c1 (diff)
downloadopenembedded-core-contrib-601d5f1af0ca39e6a2f0dacb93f46faecbac7dfb.tar.gz
dev-manual: Fixed some "systemd" capitalization issues.
I was using this term inconsistently. I have cleaned it up so that no initial capital is used. (From yocto-docs rev: 7dea2c5ef067d81b8350cd54ba4082c35d7077b1) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/dev-manual-common-tasks.xml')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml23
1 files changed, 12 insertions, 11 deletions
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
<ulink url='&YOCTO_DOCS_REF_URL;#var-INITSCRIPT_PARAMS'><filename>INITSCRIPT_PARAMS</filename></ulink>
variables within your recipe.</para></listitem>
- <listitem><para><emphasis>Systemd:</emphasis>
- Systemd was designed to replace SysVinit and to provide
+ <listitem><para><emphasis>systemd:</emphasis>
+ 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
<ulink url='http://freedesktop.org/wiki/Software/systemd/'></ulink>.
</para>
- <para>To enable a service using Systemd, your recipe
+ <para>To enable a service using systemd, your recipe
needs to inherit the
<ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-systemd'><filename>systemd</filename></ulink>
class.
@@ -5340,7 +5341,7 @@
<para>
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 @@
<para>
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.
</para>
<section id='using-systemd-exclusively'>
- <title>Using Systemd Exclusively</title>
+ <title>Using systemd Exclusively</title>
<para>
Set the these variables in your distribution configuration
@@ -5387,7 +5388,7 @@
</section>
<section id='using-systemd-for-the-main-image-and-using-sysvinit-for-the-rescue-image'>
- <title>Using Systemd for the Main Image and Using SysVinit for the Rescue Image</title>
+ <title>Using systemd for the Main Image and Using SysVinit for the Rescue Image</title>
<para>
Set the these variables in your distribution configuration
@@ -5398,11 +5399,11 @@
</literallayout>
Doing so causes your main image to use the
<filename>packagegroup-core-boot.bb</filename> 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.
</para>
</section>
</section>
@@ -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
<filename>meta/lib/oeqa/runtime/systemd.py</filename>).
</para>