diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index e7bebefb63..4223bb118b 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -2868,7 +2868,7 @@ the details.
.config file.
Configuration items that appear twice in the same
configuration fragment.
- Configuration items tagged as "required" were overridden.
+ Configuration items tagged as "required" that were overridden.
A board overrides a non-board specific option.
Listed options not valid for the kernel being processed.
@@ -2972,8 +2972,8 @@ the details.
The first step is to create a layer so you can isolate your changes:
- $cd ~/poky
- $mkdir meta-mylayer
+ $ cd ~/poky
+ $ mkdir meta-mylayer
Creating a directory that follows the Yocto Project layer naming
conventions sets up the layer for your changes.
@@ -3040,7 +3040,7 @@ the details.
Edit the init/calibrate.c file to have the
following changes:
- void __cpuinit calibrate_delay(void)
+ void calibrate_delay(void)
{
unsigned long lpj;
static bool printed;
@@ -3406,12 +3406,12 @@ the details.
The following list presents the overall steps you need to
consider and perform to create distributions with smaller
- root filesystems, faster boot times, maintain your critical
+ root filesystems, achieve faster boot times, maintain your critical
functionality, and avoid initial RAM disks:
Determine your goals and guiding
principles.
- Understand what gives your image size.
+ Understand what contributes to your image size.
Reduce the size of the root filesystem.
@@ -3457,7 +3457,7 @@ the details.
- Understand What Gives Your Image Size
+ Understand What Contributes to Your Image Size
It is easiest to have something to start with when creating
@@ -3485,7 +3485,7 @@ the details.
Memory consists of static, dynamic, and temporary memory.
Static memory is the TEXT (code), DATA (initialized data
in the code), and BSS (uninitialized data) sections.
- Dynamic memory contains memory that is allocated at runtime,
+ Dynamic memory represents memory that is allocated at runtime:
stacks, hash tables, and so forth.
Temporary memory is recovered after the boot process.
This memory consists of memory used for decompressing
@@ -3561,8 +3561,8 @@ the details.
You can apply a filter to the script to ignore files under
a certain size.
- This example filters out anything below 100 Kbytes.
- The sizes reported by the tool are uncompressed and thus,
+ The previous example filters out any files below 100 Kbytes.
+ The sizes reported by the tool are uncompressed, and thus
will be smaller by a relatively constant factor in a
compressed root filesystem.
When you examine your log file, you can focus on areas of the
@@ -3592,7 +3592,7 @@ the details.
- Use the local.conf file to make changes.
+ Use your local.conf file to make changes.
For example, to eliminate udev and
glib, set the following in the
local configuration file:
@@ -3611,7 +3611,7 @@ the details.
using initramfs.
Be aware that ext3 requires a 1 Mbyte
journal.
- If you are okay with running read-only you do not need this
+ If you are okay with running read-only, you do not need this
journal.
@@ -3632,7 +3632,7 @@ the details.
aspects.
What subsystems do you enable?
For what architecture are you building?
- Which drivers do you build by default.
+ Which drivers do you build by default?
You can modify the kernel source if you want to help
with boot time.
@@ -3651,7 +3651,7 @@ the details.
taken up with the built-in .o files for
drivers, networking, core kernel files, filesystem, sound,
and so forth.
- The sizes reported by the tool are uncompressed and thus,
+ The sizes reported by the tool are uncompressed, and thus
will be smaller by a relatively constant factor in a compressed
kernel image.
Look to reduce the areas that are large and taking up around
@@ -5162,7 +5162,7 @@ the details.
Supporting a read-only root filesystem requires that the system and
applications do not try to write to the root filesystem.
You must configure all parts of the target system to write
- elsewhere, or to gracefully fail in the event of failing to
+ elsewhere, or to gracefully fail in the event of attempting to
write to the root filesystem.