summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-05-29 14:09:04 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-31 08:19:25 +0100
commit2dcd1f0604e960ab173c7603209ccf2cbdcaaebf (patch)
tree6bdf11e7f1bc7d46adaab995d4c69cd6123ac087 /documentation
parenta0f4706d238d84380f2fffcea869096bcd643556 (diff)
downloadpoky-2dcd1f0604e960ab173c7603209ccf2cbdcaaebf.tar.gz
dev-manual, kernel-manual: Added links to THISDIR variable
There is now a glossary description for the THISDIR variable in ref-manual. I added some cross-reference links to the variable in key places of these two manuals. (From yocto-docs rev: d5e01204b864b81782be33d8119c05ef328f3fd7) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Conflicts: documentation/dev-manual/dev-manual-common-tasks.xml documentation/kernel-dev/kernel-dev-common.xml Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml248
-rw-r--r--documentation/kernel-dev/kernel-dev-advanced.xml2
-rw-r--r--documentation/kernel-dev/kernel-dev-common.xml33
3 files changed, 143 insertions, 140 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 219ee68d40..f4358e13d3 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -411,7 +411,7 @@
411 install -m 0644 ${S}/machconfig ${D}${sysconfdir}/formfactor/ 411 install -m 0644 ${S}/machconfig ${D}${sysconfdir}/formfactor/
412 fi 412 fi
413 } </literallayout> 413 } </literallayout>
414 In the main recipe, note the 414 In the main recipe, note the
415 <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink> 415 <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink>
416 variable, which tells the OpenEmbedded build system where to 416 variable, which tells the OpenEmbedded build system where to
417 find files during the build. 417 find files during the build.
@@ -431,27 +431,27 @@
431 </para> 431 </para>
432 432
433 <para> 433 <para>
434 By default, the build system uses the 434 By default, the build system uses the
435 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESPATH'><filename>FILESPATH</filename></ulink> 435 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESPATH'><filename>FILESPATH</filename></ulink>
436 variable to locate files. 436 variable to locate files.
437 This append file extends the locations by setting the 437 This append file extends the locations by setting the
438 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESEXTRAPATHS'><filename>FILESEXTRAPATHS</filename></ulink> 438 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESEXTRAPATHS'><filename>FILESEXTRAPATHS</filename></ulink>
439 variable. 439 variable.
440 Setting this variable in the <filename>.bbappend</filename> 440 Setting this variable in the <filename>.bbappend</filename>
441 file is the most reliable and recommended method for adding 441 file is the most reliable and recommended method for adding
442 directories to the search path used by the build system 442 directories to the search path used by the build system
443 to find files. 443 to find files.
444 </para> 444 </para>
445 445
446 <para> 446 <para>
447 The statement in this example extends the directories to include 447 The statement in this example extends the directories to include
448 <filename>${THISDIR}/${</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-PN'><filename>PN</filename></ulink><filename>}</filename>, 448 <filename>${</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-THISDIR'><filename>THISDIR</filename></ulink><filename>}/${</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-PN'><filename>PN</filename></ulink><filename>}</filename>,
449 which resolves to a directory named 449 which resolves to a directory named
450 <filename>formfactor</filename> in the same directory 450 <filename>formfactor</filename> in the same directory
451 in which the append file resides (i.e. 451 in which the append file resides (i.e.
452 <filename>meta-intel/meta-crownbay/recipes-bsp/formfactor/formfactor</filename>. 452 <filename>meta-intel/meta-crownbay/recipes-bsp/formfactor/formfactor</filename>.
453 This implies that you must have the supporting directory 453 This implies that you must have the supporting directory
454 structure set up that will contain any files or patches you 454 structure set up that will contain any files or patches you
455 will be including from the layer. 455 will be including from the layer.
456 </para> 456 </para>
457 457
@@ -660,7 +660,7 @@
660 script to accept the default value. 660 script to accept the default value.
661 Once the script completes, the new layer 661 Once the script completes, the new layer
662 is created in the current working directory. 662 is created in the current working directory.
663 The script names the layer by prepending 663 The script names the layer by prepending
664 <filename>meta-</filename> to the name you provide. 664 <filename>meta-</filename> to the name you provide.
665 </para> 665 </para>
666 666
@@ -1270,7 +1270,7 @@
1270 1270
1271 <para> 1271 <para>
1272 To add a post-installation script to a package, add a 1272 To add a post-installation script to a package, add a
1273 <filename>pkg_postinst_PACKAGENAME()</filename> function to the 1273 <filename>pkg_postinst_PACKAGENAME()</filename> function to the
1274 <filename>.bb</filename> file and use 1274 <filename>.bb</filename> file and use
1275 <filename>PACKAGENAME</filename> as the name of the package you want to attach to the 1275 <filename>PACKAGENAME</filename> as the name of the package you want to attach to the
1276 <filename>postinst</filename> script. 1276 <filename>postinst</filename> script.
@@ -1504,8 +1504,8 @@
1504 By default, the <filename>PACKAGES</filename> variable contains 1504 By default, the <filename>PACKAGES</filename> variable contains
1505 <filename>${PN}-staticdev</filename>, which includes all static library files. 1505 <filename>${PN}-staticdev</filename>, which includes all static library files.
1506 <note> 1506 <note>
1507 Some previously released versions of the Yocto Project 1507 Some previously released versions of the Yocto Project
1508 defined the static library files through 1508 defined the static library files through
1509 <filename>${PN}-dev</filename>. 1509 <filename>${PN}-dev</filename>.
1510 </note> 1510 </note>
1511 Following, is part of the BitBake configuration file. 1511 Following, is part of the BitBake configuration file.
@@ -1810,7 +1810,7 @@
1810 <para> 1810 <para>
1811 To use the <filename>menuconfig</filename> tool in the Yocto Project development 1811 To use the <filename>menuconfig</filename> tool in the Yocto Project development
1812 environment, you must build the tool using BitBake. 1812 environment, you must build the tool using BitBake.
1813 Thus, the environment must be set up using the 1813 Thus, the environment must be set up using the
1814 <ulink url='&YOCTO_DOCS_REF_URL;#structure-core-script'><filename>&OE_INIT_FILE;</filename></ulink> 1814 <ulink url='&YOCTO_DOCS_REF_URL;#structure-core-script'><filename>&OE_INIT_FILE;</filename></ulink>
1815 script found in the 1815 script found in the
1816 <link linkend='build-directory'>Build Directory</link>. 1816 <link linkend='build-directory'>Build Directory</link>.
@@ -2240,7 +2240,7 @@
2240 The <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESEXTRAPATHS'><filename>FILESEXTRAPATHS</filename></ulink> 2240 The <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESEXTRAPATHS'><filename>FILESEXTRAPATHS</filename></ulink>
2241 and <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink> 2241 and <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink>
2242 statements enable the OpenEmbedded build system to find the patch file. 2242 statements enable the OpenEmbedded build system to find the patch file.
2243 For more information on using append files, see the 2243 For more information on using append files, see the
2244 "<link linkend='using-bbappend-files'>Using .bbappend Files</link>" 2244 "<link linkend='using-bbappend-files'>Using .bbappend Files</link>"
2245 section. 2245 section.
2246 </para></listitem> 2246 </para></listitem>
@@ -2262,7 +2262,7 @@
2262 <itemizedlist> 2262 <itemizedlist>
2263 <listitem><para><emphasis>Build for the correct target architecture:</emphasis> Your 2263 <listitem><para><emphasis>Build for the correct target architecture:</emphasis> Your
2264 selected <ulink url='&YOCTO_DOCS_REF_URL;#var-MACHINE'><filename>MACHINE</filename></ulink> 2264 selected <ulink url='&YOCTO_DOCS_REF_URL;#var-MACHINE'><filename>MACHINE</filename></ulink>
2265 definition within the <filename>local.conf</filename> file in the 2265 definition within the <filename>local.conf</filename> file in the
2266 <link linkend='build-directory'>Build Directory</link> 2266 <link linkend='build-directory'>Build Directory</link>
2267 specifies the target architecture used when building the Linux kernel. 2267 specifies the target architecture used when building the Linux kernel.
2268 By default, <filename>MACHINE</filename> is set to 2268 By default, <filename>MACHINE</filename> is set to
@@ -2270,7 +2270,7 @@
2270 <trademark class='registered'>Intel</trademark> Architecture 2270 <trademark class='registered'>Intel</trademark> Architecture
2271 target machine suitable for the QEMU emulator.</para></listitem> 2271 target machine suitable for the QEMU emulator.</para></listitem>
2272 <listitem><para><emphasis>Identify your <filename>meta-mylayer</filename> 2272 <listitem><para><emphasis>Identify your <filename>meta-mylayer</filename>
2273 layer:</emphasis> The 2273 layer:</emphasis> The
2274 <ulink url='&YOCTO_DOCS_REF_URL;#var-BBLAYERS'><filename>BBLAYERS</filename></ulink> 2274 <ulink url='&YOCTO_DOCS_REF_URL;#var-BBLAYERS'><filename>BBLAYERS</filename></ulink>
2275 variable in the 2275 variable in the
2276 <filename>bblayers.conf</filename> file found in the 2276 <filename>bblayers.conf</filename> file found in the
@@ -2306,7 +2306,7 @@
2306 <orderedlist> 2306 <orderedlist>
2307 <listitem><para><emphasis>Be sure your build environment is initialized</emphasis>: 2307 <listitem><para><emphasis>Be sure your build environment is initialized</emphasis>:
2308 Your environment should be set up since you previously sourced 2308 Your environment should be set up since you previously sourced
2309 the 2309 the
2310 <ulink url='&YOCTO_DOCS_REF_URL;#structure-core-script'><filename>&OE_INIT_FILE;</filename></ulink> 2310 <ulink url='&YOCTO_DOCS_REF_URL;#structure-core-script'><filename>&OE_INIT_FILE;</filename></ulink>
2311 script. 2311 script.
2312 If it is not, source the script again from <filename>poky</filename>. 2312 If it is not, source the script again from <filename>poky</filename>.
@@ -2322,7 +2322,7 @@
2322 $ bitbake -c cleansstate linux-yocto 2322 $ bitbake -c cleansstate linux-yocto
2323 </literallayout></para> 2323 </literallayout></para>
2324 <para><note>Never remove any files by hand from the <filename>tmp/deploy</filename> 2324 <para><note>Never remove any files by hand from the <filename>tmp/deploy</filename>
2325 directory inside the 2325 directory inside the
2326 <link linkend='build-directory'>Build Directory</link>. 2326 <link linkend='build-directory'>Build Directory</link>.
2327 Always use the various BitBake clean tasks to clear out previous 2327 Always use the various BitBake clean tasks to clear out previous
2328 build artifacts. 2328 build artifacts.
@@ -2390,7 +2390,7 @@
2390 configurations in a <filename>local.conf</filename> 2390 configurations in a <filename>local.conf</filename>
2391 configuration file makes it easier to reproduce the same 2391 configuration file makes it easier to reproduce the same
2392 build configuration when using multiple build machines. 2392 build configuration when using multiple build machines.
2393 See the 2393 See the
2394 "<link linkend='creating-a-general-layer-using-the-yocto-layer-script'>Creating a General Layer Using the yocto-layer Script</link>" 2394 "<link linkend='creating-a-general-layer-using-the-yocto-layer-script'>Creating a General Layer Using the yocto-layer Script</link>"
2395 section for information on how to quickly set up a layer. 2395 section for information on how to quickly set up a layer.
2396 </para></listitem> 2396 </para></listitem>
@@ -2416,7 +2416,7 @@
2416 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_NAME'><filename>DISTRO_NAME</filename></ulink> [required] 2416 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_NAME'><filename>DISTRO_NAME</filename></ulink> [required]
2417 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_VERSION'><filename>DISTRO_VERSION</filename></ulink> [required] 2417 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_VERSION'><filename>DISTRO_VERSION</filename></ulink> [required]
2418 </literallayout> 2418 </literallayout>
2419 These following variables are optional and you typically 2419 These following variables are optional and you typically
2420 set them from the distribution configuration file: 2420 set them from the distribution configuration file:
2421 <literallayout class='monospaced'> 2421 <literallayout class='monospaced'>
2422 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_FEATURES'><filename>DISTRO_FEATURES</filename></ulink> [optional] 2422 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_FEATURES'><filename>DISTRO_FEATURES</filename></ulink> [optional]
@@ -2427,7 +2427,7 @@
2427 <tip> 2427 <tip>
2428 If you want to base your distribution configuration file 2428 If you want to base your distribution configuration file
2429 on the very basic configuration from OE-Core, you 2429 on the very basic configuration from OE-Core, you
2430 can use 2430 can use
2431 <filename>conf/distro/defaultsetup.conf</filename> as 2431 <filename>conf/distro/defaultsetup.conf</filename> as
2432 a reference and just include variables that differ 2432 a reference and just include variables that differ
2433 as compared to <filename>defaultsetup.conf</filename>. 2433 as compared to <filename>defaultsetup.conf</filename>.
@@ -2573,7 +2573,7 @@
2573 <filename>poky-tiny</filename>. 2573 <filename>poky-tiny</filename>.
2574 <note> 2574 <note>
2575 To use <filename>poky-tiny</filename> in your build, 2575 To use <filename>poky-tiny</filename> in your build,
2576 set the 2576 set the
2577 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO'><filename>DISTRO</filename></ulink> 2577 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO'><filename>DISTRO</filename></ulink>
2578 variable in your 2578 variable in your
2579 <filename>local.conf</filename> file to "poky-tiny" 2579 <filename>local.conf</filename> file to "poky-tiny"
@@ -3069,7 +3069,7 @@
3069 3069
3070 <para> 3070 <para>
3071 The alternative to setting up a PR Service is to manually 3071 The alternative to setting up a PR Service is to manually
3072 bump the 3072 bump the
3073 <ulink url='&YOCTO_DOCS_REF_URL;#var-PR'><filename>PR</filename></ulink> 3073 <ulink url='&YOCTO_DOCS_REF_URL;#var-PR'><filename>PR</filename></ulink>
3074 variable. 3074 variable.
3075 </para> 3075 </para>
@@ -3102,8 +3102,8 @@
3102 <para> 3102 <para>
3103 When upgrading the version of a package, assuming the 3103 When upgrading the version of a package, assuming the
3104 <filename><ulink url='&YOCTO_DOCS_REF_URL;#var-PV'>PV</ulink></filename> 3104 <filename><ulink url='&YOCTO_DOCS_REF_URL;#var-PV'>PV</ulink></filename>
3105 changes, the <filename>PR</filename> variable should be 3105 changes, the <filename>PR</filename> variable should be
3106 reset to "r0" (or "$(INC_PR).0" if you are using 3106 reset to "r0" (or "$(INC_PR).0" if you are using
3107 <filename>INC_PR</filename>). 3107 <filename>INC_PR</filename>).
3108 </para> 3108 </para>
3109 3109
@@ -3163,7 +3163,7 @@
3163 $ bitbake world -f -c distro_check 3163 $ bitbake world -f -c distro_check
3164 </literallayout> 3164 </literallayout>
3165 The results are stored in the <filename>build/tmp/log/distro_check-${DATETIME}.results</filename> 3165 The results are stored in the <filename>build/tmp/log/distro_check-${DATETIME}.results</filename>
3166 file found in the 3166 file found in the
3167 <link linkend='source-directory'>Source Directory</link>. 3167 <link linkend='source-directory'>Source Directory</link>.
3168 </para> 3168 </para>
3169 </section> 3169 </section>
@@ -3203,7 +3203,7 @@
3203 The <filename>do_split_packages</filename> function 3203 The <filename>do_split_packages</filename> function
3204 searches for a pattern of files or directories under a 3204 searches for a pattern of files or directories under a
3205 specified path and creates a package for each one it finds 3205 specified path and creates a package for each one it finds
3206 by appending to the 3206 by appending to the
3207 <ulink url='&YOCTO_DOCS_REF_URL;#var-PACKAGES'><filename>PACKAGES</filename></ulink> 3207 <ulink url='&YOCTO_DOCS_REF_URL;#var-PACKAGES'><filename>PACKAGES</filename></ulink>
3208 variable and setting the appropriate values for 3208 variable and setting the appropriate values for
3209 <filename>FILES_packagename</filename>, 3209 <filename>FILES_packagename</filename>,
@@ -3241,7 +3241,7 @@
3241 Thus, if a file in <filename>${libdir}</filename> 3241 Thus, if a file in <filename>${libdir}</filename>
3242 called <filename>mod_alias.so</filename> is found, 3242 called <filename>mod_alias.so</filename> is found,
3243 a package called <filename>lighttpd-module-alias</filename> 3243 a package called <filename>lighttpd-module-alias</filename>
3244 is created for it and the 3244 is created for it and the
3245 <ulink url='&YOCTO_DOCS_REF_URL;#var-DESCRIPTION'><filename>DESCRIPTION</filename></ulink> 3245 <ulink url='&YOCTO_DOCS_REF_URL;#var-DESCRIPTION'><filename>DESCRIPTION</filename></ulink>
3246 is set to "Lighttpd module for alias".</para></listitem> 3246 is set to "Lighttpd module for alias".</para></listitem>
3247 </itemizedlist> 3247 </itemizedlist>
@@ -3265,7 +3265,7 @@
3265 <filename>do_split_packages</filename>, see the 3265 <filename>do_split_packages</filename>, see the
3266 <filename>connman.inc</filename> file in the 3266 <filename>connman.inc</filename> file in the
3267 <filename>meta/recipes-connectivity/connman/</filename> 3267 <filename>meta/recipes-connectivity/connman/</filename>
3268 directory of the <filename>poky</filename> 3268 directory of the <filename>poky</filename>
3269 <link linkend='yocto-project-repositories'>source repository</link>. 3269 <link linkend='yocto-project-repositories'>source repository</link>.
3270 You can also find examples in 3270 You can also find examples in
3271 <filename>meta/classes/kernel.bbclass</filename>. 3271 <filename>meta/classes/kernel.bbclass</filename>.
@@ -3535,33 +3535,33 @@
3535 <title>Testing Packages With ptest</title> 3535 <title>Testing Packages With ptest</title>
3536 3536
3537 <para> 3537 <para>
3538 A Package Test (ptest) runs tests against packages built 3538 A Package Test (ptest) runs tests against packages built
3539 by the OpenEmbedded build system on the target machine. 3539 by the OpenEmbedded build system on the target machine.
3540 A ptest contains at least two items: the actual test, and 3540 A ptest contains at least two items: the actual test, and
3541 a shell script (<filename>run-ptest</filename>) that starts 3541 a shell script (<filename>run-ptest</filename>) that starts
3542 the test. 3542 the test.
3543 The shell script that starts the test must not contain 3543 The shell script that starts the test must not contain
3544 the actual test, the script only starts it. 3544 the actual test, the script only starts it.
3545 On the other hand, the test can be anything from a simple 3545 On the other hand, the test can be anything from a simple
3546 shell script that runs a binary and checks the output to 3546 shell script that runs a binary and checks the output to
3547 an elaborate system of test binaries and data files. 3547 an elaborate system of test binaries and data files.
3548 </para> 3548 </para>
3549 3549
3550 <para> 3550 <para>
3551 The test generates output in the format used by 3551 The test generates output in the format used by
3552 Automake: 3552 Automake:
3553 <literallayout class='monospaced'> 3553 <literallayout class='monospaced'>
3554 &lt;result&gt;: &lt;testname&gt; 3554 &lt;result&gt;: &lt;testname&gt;
3555 </literallayout> 3555 </literallayout>
3556 where the result can be <filename>PASS</filename>, 3556 where the result can be <filename>PASS</filename>,
3557 <filename>FAIL</filename>, or <filename>SKIP</filename>, 3557 <filename>FAIL</filename>, or <filename>SKIP</filename>,
3558 and the testname can be any identifying string. 3558 and the testname can be any identifying string.
3559 </para> 3559 </para>
3560 3560
3561 <note> 3561 <note>
3562 With this release of the Yocto Project, three recipes exist 3562 With this release of the Yocto Project, three recipes exist
3563 that are "ptest-enabled": <filename>bash</filename>, 3563 that are "ptest-enabled": <filename>bash</filename>,
3564 <filename>glib-2.0</filename>, and 3564 <filename>glib-2.0</filename>, and
3565 <filename>dbus</filename>. 3565 <filename>dbus</filename>.
3566 These three recipes are Autotool-enabled. 3566 These three recipes are Autotool-enabled.
3567 </note> 3567 </note>
@@ -3570,20 +3570,20 @@
3570 <title>Adding ptest to Your Build</title> 3570 <title>Adding ptest to Your Build</title>
3571 3571
3572 <para> 3572 <para>
3573 To add package testing to your build, add the 3573 To add package testing to your build, add the
3574 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_FEATURES'><filename>DISTRO_FEATURES</filename></ulink> 3574 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_FEATURES'><filename>DISTRO_FEATURES</filename></ulink>
3575 and <ulink url='&YOCTO_DOCS_REF_URL;#var-EXTRA_IMAGE_FEATURES'><filename>EXTRA_IMAGE_FEATURES</filename></ulink> 3575 and <ulink url='&YOCTO_DOCS_REF_URL;#var-EXTRA_IMAGE_FEATURES'><filename>EXTRA_IMAGE_FEATURES</filename></ulink>
3576 variables to your <filename>local.conf</filename> file, 3576 variables to your <filename>local.conf</filename> file,
3577 which is found in the 3577 which is found in the
3578 <link linkend='build-directory'>Build Directory</link>: 3578 <link linkend='build-directory'>Build Directory</link>:
3579 <literallayout class='monospaced'> 3579 <literallayout class='monospaced'>
3580 EXTRA_IMAGE_FEATURES += "ptest" 3580 EXTRA_IMAGE_FEATURES += "ptest"
3581 DISTRO_FEATURES_append = " ptest-pkgs" 3581 DISTRO_FEATURES_append = " ptest-pkgs"
3582 </literallayout> 3582 </literallayout>
3583 Once your build is complete, the ptest files are installed 3583 Once your build is complete, the ptest files are installed
3584 into the <filename>/usr/lib/&lt;package&gt;/ptest</filename> 3584 into the <filename>/usr/lib/&lt;package&gt;/ptest</filename>
3585 directory within the image, where 3585 directory within the image, where
3586 <filename>&lt;package&gt;</filename> is the name of the 3586 <filename>&lt;package&gt;</filename> is the name of the
3587 package. 3587 package.
3588 </para> 3588 </para>
3589 </section> 3589 </section>
@@ -3592,21 +3592,21 @@
3592 <title>Running ptest</title> 3592 <title>Running ptest</title>
3593 3593
3594 <para> 3594 <para>
3595 The <filename>ptest-runner</filename> package installs a 3595 The <filename>ptest-runner</filename> package installs a
3596 shell script that loops through all installed ptest test 3596 shell script that loops through all installed ptest test
3597 suites and runs them in sequence. 3597 suites and runs them in sequence.
3598 Consequently, you might want to add this package to 3598 Consequently, you might want to add this package to
3599 your image. 3599 your image.
3600 </para> 3600 </para>
3601 </section> 3601 </section>
3602 3602
3603 <section id='getting-your-package-ready'> 3603 <section id='getting-your-package-ready'>
3604 <title>Getting Your Package Ready</title> 3604 <title>Getting Your Package Ready</title>
3605 3605
3606 <para> 3606 <para>
3607 In order to enable a recipe to run installed ptests 3607 In order to enable a recipe to run installed ptests
3608 on target hardware, 3608 on target hardware,
3609 you need to prepare the recipes that build the packages 3609 you need to prepare the recipes that build the packages
3610 you want to test. 3610 you want to test.
3611 Here is what you have to do for each recipe: 3611 Here is what you have to do for each recipe:
3612 <itemizedlist> 3612 <itemizedlist>
@@ -3619,10 +3619,10 @@
3619 </para></listitem> 3619 </para></listitem>
3620 <listitem><para><emphasis>Create <filename>run-ptest</filename>:</emphasis> 3620 <listitem><para><emphasis>Create <filename>run-ptest</filename>:</emphasis>
3621 This script starts your test. 3621 This script starts your test.
3622 Locate the script where you will refer to it 3622 Locate the script where you will refer to it
3623 using 3623 using
3624 <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink>. 3624 <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink>.
3625 Here is an example that starts a test for 3625 Here is an example that starts a test for
3626 <filename>dbus</filename>: 3626 <filename>dbus</filename>:
3627 <literallayout class='monospaced'> 3627 <literallayout class='monospaced'>
3628 #!/bin/sh 3628 #!/bin/sh
@@ -3632,45 +3632,45 @@
3632 </para></listitem> 3632 </para></listitem>
3633 <listitem><para><emphasis>Ensure dependencies are 3633 <listitem><para><emphasis>Ensure dependencies are
3634 met:</emphasis> 3634 met:</emphasis>
3635 If the test adds build or runtime dependencies 3635 If the test adds build or runtime dependencies
3636 that normally do not exist for the package 3636 that normally do not exist for the package
3637 (such as requiring "make" to run the test suite), 3637 (such as requiring "make" to run the test suite),
3638 use the 3638 use the
3639 <ulink url='&YOCTO_DOCS_REF_URL;#var-DEPENDS'><filename>DEPENDS</filename></ulink> 3639 <ulink url='&YOCTO_DOCS_REF_URL;#var-DEPENDS'><filename>DEPENDS</filename></ulink>
3640 and 3640 and
3641 <ulink url='&YOCTO_DOCS_REF_URL;#var-RDEPENDS'><filename>RDEPENDS</filename></ulink> 3641 <ulink url='&YOCTO_DOCS_REF_URL;#var-RDEPENDS'><filename>RDEPENDS</filename></ulink>
3642 variables in your recipe in order for the package 3642 variables in your recipe in order for the package
3643 to meet the dependencies. 3643 to meet the dependencies.
3644 Here is an example where the package has a runtime 3644 Here is an example where the package has a runtime
3645 dependency on "make": 3645 dependency on "make":
3646 <literallayout class='monospaced'> 3646 <literallayout class='monospaced'>
3647 RDEPENDS_${PN}-ptest += "make" 3647 RDEPENDS_${PN}-ptest += "make"
3648 </literallayout> 3648 </literallayout>
3649 </para></listitem> 3649 </para></listitem>
3650 <listitem><para><emphasis>Add a function to build the 3650 <listitem><para><emphasis>Add a function to build the
3651 test suite:</emphasis> 3651 test suite:</emphasis>
3652 Not many packages support cross-compilation of 3652 Not many packages support cross-compilation of
3653 their test suites. 3653 their test suites.
3654 Consequently, you usually need to add a 3654 Consequently, you usually need to add a
3655 cross-compilation function to the package. 3655 cross-compilation function to the package.
3656 </para> 3656 </para>
3657 <para>Many packages based on Automake compile and 3657 <para>Many packages based on Automake compile and
3658 run the test suite by using a single command 3658 run the test suite by using a single command
3659 such as <filename>make check</filename>. 3659 such as <filename>make check</filename>.
3660 However, the native <filename>make check</filename> 3660 However, the native <filename>make check</filename>
3661 builds and runs on the same computer, while 3661 builds and runs on the same computer, while
3662 cross-compiling requires that the package is built 3662 cross-compiling requires that the package is built
3663 on the host but executed on the target. 3663 on the host but executed on the target.
3664 The built version of Automake that ships with the 3664 The built version of Automake that ships with the
3665 Yocto Project includes a patch that separates 3665 Yocto Project includes a patch that separates
3666 building and execution. 3666 building and execution.
3667 Consequently, packages that use the unaltered, 3667 Consequently, packages that use the unaltered,
3668 patched version of <filename>make check</filename> 3668 patched version of <filename>make check</filename>
3669 automatically cross-compiles.</para> 3669 automatically cross-compiles.</para>
3670 <para>However, you still must add a 3670 <para>However, you still must add a
3671 <filename>do_compile_ptest</filename> function to 3671 <filename>do_compile_ptest</filename> function to
3672 build the test suite. 3672 build the test suite.
3673 Add a function similar to the following to your 3673 Add a function similar to the following to your
3674 recipe: 3674 recipe:
3675 <literallayout class='monospaced'> 3675 <literallayout class='monospaced'>
3676 do_compile_ptest() { 3676 do_compile_ptest() {
@@ -3680,26 +3680,26 @@
3680 </para></listitem> 3680 </para></listitem>
3681 <listitem><para><emphasis>Ensure special configurations 3681 <listitem><para><emphasis>Ensure special configurations
3682 are set:</emphasis> 3682 are set:</emphasis>
3683 If the package requires special configurations 3683 If the package requires special configurations
3684 prior to compiling the test code, you must 3684 prior to compiling the test code, you must
3685 insert a <filename>do_configure_ptest</filename> 3685 insert a <filename>do_configure_ptest</filename>
3686 function into the recipe. 3686 function into the recipe.
3687 </para></listitem> 3687 </para></listitem>
3688 <listitem><para><emphasis>Install the test 3688 <listitem><para><emphasis>Install the test
3689 suite:</emphasis> 3689 suite:</emphasis>
3690 The <filename>ptest.bbclass</filename> class 3690 The <filename>ptest.bbclass</filename> class
3691 automatically copies the file 3691 automatically copies the file
3692 <filename>run-ptest</filename> to the target and 3692 <filename>run-ptest</filename> to the target and
3693 then runs make <filename>install-ptest</filename> 3693 then runs make <filename>install-ptest</filename>
3694 to run the tests. 3694 to run the tests.
3695 If this is not enough, you need to create a 3695 If this is not enough, you need to create a
3696 <filename>do_install_ptest</filename> function and 3696 <filename>do_install_ptest</filename> function and
3697 make sure it gets called after the 3697 make sure it gets called after the
3698 "make install-ptest" completes. 3698 "make install-ptest" completes.
3699 </para></listitem> 3699 </para></listitem>
3700 </itemizedlist> 3700 </itemizedlist>
3701 </para> 3701 </para>
3702 </section> 3702 </section>
3703 </section> 3703 </section>
3704 </section> 3704 </section>
3705 3705
@@ -3779,9 +3779,9 @@
3779 3779
3780 <note> 3780 <note>
3781 It is recommended that you create your own distribution configuration 3781 It is recommended that you create your own distribution configuration
3782 file to hold these settings instead of using your 3782 file to hold these settings instead of using your
3783 <filename>local.conf</filename> file. 3783 <filename>local.conf</filename> file.
3784 For information on creating your own distribution, see the 3784 For information on creating your own distribution, see the
3785 "<link linkend='creating-your-own-distribution'>Creating Your Own Distribution</link>" 3785 "<link linkend='creating-your-own-distribution'>Creating Your Own Distribution</link>"
3786 section. 3786 section.
3787 </note> 3787 </note>
@@ -3797,7 +3797,7 @@
3797 VIRTUAL-RUNTIME_init_manager = "systemd" 3797 VIRTUAL-RUNTIME_init_manager = "systemd"
3798 </literallayout> 3798 </literallayout>
3799 You can also prevent the <filename>sysvinit</filename> 3799 You can also prevent the <filename>sysvinit</filename>
3800 distribution feature from 3800 distribution feature from
3801 being automatically enabled as follows: 3801 being automatically enabled as follows:
3802 <literallayout class='monospaced'> 3802 <literallayout class='monospaced'>
3803 DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit" 3803 DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit"
@@ -3838,7 +3838,7 @@
3838 However, on rare occasions where you might want to use a 3838 However, on rare occasions where you might want to use a
3839 layer but exclude parts that are causing problems, such 3839 layer but exclude parts that are causing problems, such
3840 as introducing a different version of a recipe, you can 3840 as introducing a different version of a recipe, you can
3841 use 3841 use
3842 <ulink url='&YOCTO_DOCS_REF_URL;#var-BBMASK'><filename>BBMASK</filename></ulink> 3842 <ulink url='&YOCTO_DOCS_REF_URL;#var-BBMASK'><filename>BBMASK</filename></ulink>
3843 to exclude the recipe. 3843 to exclude the recipe.
3844 </para> 3844 </para>
@@ -3978,7 +3978,7 @@
3978 creation: 3978 creation:
3979 <itemizedlist> 3979 <itemizedlist>
3980 <listitem><para><emphasis>Not using $D in front of absolute paths:</emphasis> 3980 <listitem><para><emphasis>Not using $D in front of absolute paths:</emphasis>
3981 The build system defines 3981 The build system defines
3982 <filename>$</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-D'><filename>D</filename></ulink> 3982 <filename>$</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-D'><filename>D</filename></ulink>
3983 at root filesystem creation time, and 3983 at root filesystem creation time, and
3984 it is blank when run on the target device. 3984 it is blank when run on the target device.
@@ -4034,9 +4034,9 @@
4034 </para> 4034 </para>
4035 4035
4036 <tip> 4036 <tip>
4037 For best results, install <filename>-dbg</filename> packages for 4037 For best results, install <filename>-dbg</filename> packages for
4038 the applications you are going to debug. 4038 the applications you are going to debug.
4039 Doing so makes extra debug symbols available that give you more 4039 Doing so makes extra debug symbols available that give you more
4040 meaningful output. 4040 meaningful output.
4041 </tip> 4041 </tip>
4042 4042
@@ -4097,11 +4097,11 @@
4097 <para> 4097 <para>
4098 Before you can initiate a remote debugging session, you need 4098 Before you can initiate a remote debugging session, you need
4099 to be sure you have set up the cross-development environment, 4099 to be sure you have set up the cross-development environment,
4100 toolchain, and sysroot. 4100 toolchain, and sysroot.
4101 The "<ulink url='&YOCTO_DOCS_ADT_URL;#adt-prepare'>Preparing for Application Development</ulink>" 4101 The "<ulink url='&YOCTO_DOCS_ADT_URL;#adt-prepare'>Preparing for Application Development</ulink>"
4102 chapter of the Yocto Project Application Developer's Guide 4102 chapter of the Yocto Project Application Developer's Guide
4103 describes this process. 4103 describes this process.
4104 Be sure you have read that chapter and have set up 4104 Be sure you have read that chapter and have set up
4105 your environment. 4105 your environment.
4106 </para> 4106 </para>
4107 </section> 4107 </section>
@@ -4111,22 +4111,22 @@
4111 4111
4112 <para> 4112 <para>
4113 Make sure Gdbserver is installed on the target. 4113 Make sure Gdbserver is installed on the target.
4114 If it is not, install the package 4114 If it is not, install the package
4115 <filename>gdbserver</filename>, which needs the 4115 <filename>gdbserver</filename>, which needs the
4116 <filename>libthread-db1</filename> package. 4116 <filename>libthread-db1</filename> package.
4117 </para> 4117 </para>
4118 4118
4119 <para> 4119 <para>
4120 Here is an example that when entered from the host 4120 Here is an example that when entered from the host
4121 connects to the target and launches Gdbserver in order to 4121 connects to the target and launches Gdbserver in order to
4122 "debug" a binary named <filename>helloworld</filename>: 4122 "debug" a binary named <filename>helloworld</filename>:
4123 <literallayout class='monospaced'> 4123 <literallayout class='monospaced'>
4124 $ gdbserver localhost:2345 /usr/bin/helloworld 4124 $ gdbserver localhost:2345 /usr/bin/helloworld
4125 </literallayout> 4125 </literallayout>
4126 Gdbserver should now be listening on port 2345 for debugging 4126 Gdbserver should now be listening on port 2345 for debugging
4127 commands coming from a remote GDB process that is running on 4127 commands coming from a remote GDB process that is running on
4128 the host computer. 4128 the host computer.
4129 Communication between Gdbserver and the host GDB are done 4129 Communication between Gdbserver and the host GDB are done
4130 using TCP. 4130 using TCP.
4131 To use other communication protocols, please refer to the 4131 To use other communication protocols, please refer to the
4132 <ulink url='http://www.gnu.org/software/gdb/'>Gdbserver documentation</ulink>. 4132 <ulink url='http://www.gnu.org/software/gdb/'>Gdbserver documentation</ulink>.
@@ -4144,23 +4144,23 @@
4144 <section id="platdev-gdb-remotedebug-launch-gdb-buildcross"> 4144 <section id="platdev-gdb-remotedebug-launch-gdb-buildcross">
4145 <title>Build the Cross-GDB Package</title> 4145 <title>Build the Cross-GDB Package</title>
4146 <para> 4146 <para>
4147 A suitable GDB cross-binary is required that runs on your 4147 A suitable GDB cross-binary is required that runs on your
4148 host computer but also knows about the the ABI of the 4148 host computer but also knows about the the ABI of the
4149 remote target. 4149 remote target.
4150 You can get this binary from the 4150 You can get this binary from the
4151 <link linkend='cross-development-toolchain'>Cross-Development Toolchain</link>. 4151 <link linkend='cross-development-toolchain'>Cross-Development Toolchain</link>.
4152 Here is an example where the toolchain has been installed 4152 Here is an example where the toolchain has been installed
4153 in the default directory 4153 in the default directory
4154 <filename>/opt/poky/&DISTRO;</filename>: 4154 <filename>/opt/poky/&DISTRO;</filename>:
4155 <literallayout class='monospaced'> 4155 <literallayout class='monospaced'>
4156 /opt/poky/1.4/sysroots/i686-pokysdk-linux/usr/bin/armv7a-vfp-neon-poky-linux-gnueabi/arm-poky-linux-gnueabi-gdb 4156 /opt/poky/1.4/sysroots/i686-pokysdk-linux/usr/bin/armv7a-vfp-neon-poky-linux-gnueabi/arm-poky-linux-gnueabi-gdb
4157 </literallayout> 4157 </literallayout>
4158 where <filename>arm</filename> is the target architecture 4158 where <filename>arm</filename> is the target architecture
4159 and <filename>linux-gnueabi</filename> is the target ABI. 4159 and <filename>linux-gnueabi</filename> is the target ABI.
4160 </para> 4160 </para>
4161 4161
4162 <para> 4162 <para>
4163 Alternatively, you can use BitBake to build the 4163 Alternatively, you can use BitBake to build the
4164 <filename>gdb-cross</filename> binary. 4164 <filename>gdb-cross</filename> binary.
4165 Here is an example: 4165 Here is an example:
4166 <literallayout class='monospaced'> 4166 <literallayout class='monospaced'>
@@ -4190,10 +4190,10 @@
4190 </para> 4190 </para>
4191 4191
4192 <para> 4192 <para>
4193 You need to add a statement in the 4193 You need to add a statement in the
4194 <filename>.gdbinit</filename> file that points to your 4194 <filename>.gdbinit</filename> file that points to your
4195 root filesystem. 4195 root filesystem.
4196 Here is an example that points to the root filesystem for 4196 Here is an example that points to the root filesystem for
4197 an ARM-based target device: 4197 an ARM-based target device:
4198 <literallayout class='monospaced'> 4198 <literallayout class='monospaced'>
4199 set sysroot /home/jzhang/sysroot_arm 4199 set sysroot /home/jzhang/sysroot_arm
@@ -4205,14 +4205,14 @@
4205 <title>Launch the Host GDB</title> 4205 <title>Launch the Host GDB</title>
4206 4206
4207 <para> 4207 <para>
4208 Before launching the host GDB, you need to be sure 4208 Before launching the host GDB, you need to be sure
4209 you have sourced the cross-debugging environment script, 4209 you have sourced the cross-debugging environment script,
4210 which if you installed the root filesystem in the default 4210 which if you installed the root filesystem in the default
4211 location is at <filename>/opt/poky/&DISTRO;</filename> 4211 location is at <filename>/opt/poky/&DISTRO;</filename>
4212 and begins with the string "environment-setup". 4212 and begins with the string "environment-setup".
4213 For more information, see the 4213 For more information, see the
4214 "<ulink url='&YOCTO_DOCS_ADT_URL;#setting-up-the-cross-development-environment'>Setting Up the Cross-Development Environment</ulink>" 4214 "<ulink url='&YOCTO_DOCS_ADT_URL;#setting-up-the-cross-development-environment'>Setting Up the Cross-Development Environment</ulink>"
4215 section in the Yocto Project Application Developer's 4215 section in the Yocto Project Application Developer's
4216 Guide. 4216 Guide.
4217 </para> 4217 </para>
4218 4218
@@ -4222,7 +4222,7 @@
4222 Provide the binary file you are going to debug. 4222 Provide the binary file you are going to debug.
4223 For example, the following command continues with the 4223 For example, the following command continues with the
4224 example used in the previous section by loading 4224 example used in the previous section by loading
4225 the <filename>helloworld</filename> binary as well as the 4225 the <filename>helloworld</filename> binary as well as the
4226 debugging information: 4226 debugging information:
4227 <literallayout class='monospaced'> 4227 <literallayout class='monospaced'>
4228 $ arm-poky-linux-gnuabi-gdb helloworld 4228 $ arm-poky-linux-gnuabi-gdb helloworld
@@ -4238,7 +4238,7 @@
4238 4238
4239 <para> 4239 <para>
4240 From the target, you need to connect to the remote GDB 4240 From the target, you need to connect to the remote GDB
4241 server that is running on the host. 4241 server that is running on the host.
4242 You need to specify the remote host and port. 4242 You need to specify the remote host and port.
4243 Here is the command continuing with the example: 4243 Here is the command continuing with the example:
4244 <literallayout class='monospaced'> 4244 <literallayout class='monospaced'>
@@ -4315,7 +4315,7 @@
4315 <filename><ulink url='&YOCTO_DOCS_REF_URL;#var-DEBUG_BUILD'>DEBUG_BUILD</ulink></filename> 4315 <filename><ulink url='&YOCTO_DOCS_REF_URL;#var-DEBUG_BUILD'>DEBUG_BUILD</ulink></filename>
4316 variable to "1" in the <filename>local.conf</filename> configuration file. 4316 variable to "1" in the <filename>local.conf</filename> configuration file.
4317 If you use the <filename>DEBUG_BUILD</filename> variable, 4317 If you use the <filename>DEBUG_BUILD</filename> variable,
4318 you also add extra debugging information that can make the debug 4318 you also add extra debugging information that can make the debug
4319 packages large. 4319 packages large.
4320 </para> 4320 </para>
4321 4321
@@ -4390,8 +4390,8 @@
4390 <ulink url="&YOCTO_GIT_URL;/cgit.cgi/oprofileui/"></ulink>. 4390 <ulink url="&YOCTO_GIT_URL;/cgit.cgi/oprofileui/"></ulink>.
4391 If the "tools-profile" image feature is selected, all necessary binaries 4391 If the "tools-profile" image feature is selected, all necessary binaries
4392 are installed onto the target device for OProfileUI interaction. 4392 are installed onto the target device for OProfileUI interaction.
4393 For a list of image features that ship with the Yocto Project, 4393 For a list of image features that ship with the Yocto Project,
4394 see the 4394 see the
4395 "<ulink url='&YOCTO_DOCS_REF_URL;#ref-features-image'>Images</ulink>" 4395 "<ulink url='&YOCTO_DOCS_REF_URL;#ref-features-image'>Images</ulink>"
4396 section in the Yocto Project Reference Manual. 4396 section in the Yocto Project Reference Manual.
4397 </para> 4397 </para>
@@ -4460,7 +4460,7 @@
4460 </para> 4460 </para>
4461 4461
4462 <para> 4462 <para>
4463 Downloaded archives reside in the 4463 Downloaded archives reside in the
4464 <link linkend='build-directory'>Build Directory</link> in 4464 <link linkend='build-directory'>Build Directory</link> in
4465 <filename>/tmp</filename> and are cleared up when they are no longer in use. 4465 <filename>/tmp</filename> and are cleared up when they are no longer in use.
4466 </para> 4466 </para>
@@ -4604,7 +4604,7 @@
4604 release of proprietary software. 4604 release of proprietary software.
4605 The Yocto Project provides an archiver class to help avoid 4605 The Yocto Project provides an archiver class to help avoid
4606 some of these concerns. 4606 some of these concerns.
4607 See the 4607 See the
4608 "<ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-archiver'>Archiving Sources - <filename>archive*.bbclass</filename></ulink>" 4608 "<ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-archiver'>Archiving Sources - <filename>archive*.bbclass</filename></ulink>"
4609 section in the Yocto Project Reference Manual for information 4609 section in the Yocto Project Reference Manual for information
4610 on this class. 4610 on this class.
@@ -4752,7 +4752,7 @@
4752 ##COREBASE##/meta-yocto \ 4752 ##COREBASE##/meta-yocto \
4753 " 4753 "
4754 </literallayout> 4754 </literallayout>
4755 Creating and providing an archive of the 4755 Creating and providing an archive of the
4756 <link linkend='metadata'>Metadata</link> layers 4756 <link linkend='metadata'>Metadata</link> layers
4757 (recipes, configuration files, and so forth) 4757 (recipes, configuration files, and so forth)
4758 enables you to meet your 4758 enables you to meet your
diff --git a/documentation/kernel-dev/kernel-dev-advanced.xml b/documentation/kernel-dev/kernel-dev-advanced.xml
index 2626f691dc..d15e26ffbf 100644
--- a/documentation/kernel-dev/kernel-dev-advanced.xml
+++ b/documentation/kernel-dev/kernel-dev-advanced.xml
@@ -203,7 +203,7 @@
203 <filename>oe-core/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb</filename> 203 <filename>oe-core/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb</filename>
204 to a recipe in your layer, <filename>FILESEXTRAPATHS</filename> 204 to a recipe in your layer, <filename>FILESEXTRAPATHS</filename>
205 is typically set to 205 is typically set to
206 <filename>${THISDIR}/${</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-PN'><filename>PN</filename></ulink><filename>}</filename>. 206 <filename>${</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-THISDIR'><filename>THISDIR</filename></ulink><filename>}/${</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-PN'><filename>PN</filename></ulink><filename>}</filename>.
207 See the "<link linkend='modifying-an-existing-recipe'>Modifying an Existing Recipe</link>" 207 See the "<link linkend='modifying-an-existing-recipe'>Modifying an Existing Recipe</link>"
208 section for more information. 208 section for more information.
209 </para> 209 </para>
diff --git a/documentation/kernel-dev/kernel-dev-common.xml b/documentation/kernel-dev/kernel-dev-common.xml
index f0e95aca07..fb258f286c 100644
--- a/documentation/kernel-dev/kernel-dev-common.xml
+++ b/documentation/kernel-dev/kernel-dev-common.xml
@@ -92,10 +92,13 @@
92 <literallayout class='monospaced'> 92 <literallayout class='monospaced'>
93 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESEXTRAPATHS'>FILESEXTRAPATHS</ulink> := "${THISDIR}/${PN}" 93 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESEXTRAPATHS'>FILESEXTRAPATHS</ulink> := "${THISDIR}/${PN}"
94 </literallayout> 94 </literallayout>
95 The path <filename>${THISDIR}/${</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-PN'><filename>PN</filename></ulink><filename>}</filename> expands 95 The path <filename>${</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-THISDIR'><filename>THISDIR</filename></ulink><filename>}/${</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-PN'><filename>PN</filename></ulink><filename>}</filename>
96 to "linux-yocto" in the current directory for this example. 96 expands to "linux-yocto" in the current directory for this
97 If you add any new files that modify the kernel recipe, 97 example.
98 you need to place them in your layer in the following area: 98 If you add any new files that modify the kernel recipe and you
99 have extended <filename>FILESPATH</filename> as
100 described above, you must place the files in your layer in the
101 following area:
99 <literallayout class='monospaced'> 102 <literallayout class='monospaced'>
100 &lt;your-layer&gt;/recipes-kernel/linux/linux-yocto/ 103 &lt;your-layer&gt;/recipes-kernel/linux/linux-yocto/
101 </literallayout> 104 </literallayout>
@@ -149,15 +152,15 @@
149 You can make wholesale or incremental changes to the Linux 152 You can make wholesale or incremental changes to the Linux
150 kernel <filename>.config</filename> file by including a 153 kernel <filename>.config</filename> file by including a
151 <filename>defconfig</filename> or by specifying 154 <filename>defconfig</filename> or by specifying
152 configuration fragments in the 155 configuration fragments in the
153 <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink>. 156 <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink>.
154 </para> 157 </para>
155 158
156 <para> 159 <para>
157 If you have a complete Linux kernel <filename>.config</filename> 160 If you have a complete Linux kernel <filename>.config</filename>
158 file you want to use, copy it to a directory named 161 file you want to use, copy it to a directory named
159 <filename>files</filename>, which must be in 162 <filename>files</filename>, which must be in
160 your layer's <filename>recipes-kernel/linux</filename> 163 your layer's <filename>recipes-kernel/linux</filename>
161 directory, and name the file "defconfig". 164 directory, and name the file "defconfig".
162 Then, add the following lines to your linux-yocto 165 Then, add the following lines to your linux-yocto
163 <filename>.bbappend</filename> file in your layer: 166 <filename>.bbappend</filename> file in your layer:
@@ -165,13 +168,13 @@
165 FILESEXTRAPATHS_prepend := "${THISDIR}/files:" 168 FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
166 SRC_URI += "file://defconfig" 169 SRC_URI += "file://defconfig"
167 </literallayout> 170 </literallayout>
168 The 171 The
169 <filename>SRC_URI</filename> tells the build system how to 172 <filename>SRC_URI</filename> tells the build system how to
170 search for the file, while the 173 search for the file, while the
171 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESEXTRAPATHS'><filename>FILESEXTRAPATHS</filename></ulink> 174 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESEXTRAPATHS'><filename>FILESEXTRAPATHS</filename></ulink>
172 extends the 175 extends the
173 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESPATH'><filename>FILESPATH</filename></ulink> 176 <ulink url='&YOCTO_DOCS_REF_URL;#var-FILESPATH'><filename>FILESPATH</filename></ulink>
174 variable (search directories) to include the 177 variable (search directories) to include the
175 <filename>files</filename> directory you created for the 178 <filename>files</filename> directory you created for the
176 configuration changes. 179 configuration changes.
177 </para> 180 </para>
@@ -193,8 +196,8 @@
193 CONFIG_SERIAL_CORE=y 196 CONFIG_SERIAL_CORE=y
194 CONFIG_SERIAL_CORE_CONSOLE=y 197 CONFIG_SERIAL_CORE_CONSOLE=y
195 </literallayout> 198 </literallayout>
196 Next, include this configuration fragment and extend the 199 Next, include this configuration fragment and extend the
197 <filename>FILESPATH</filename> variable in your 200 <filename>FILESPATH</filename> variable in your
198 <filename>.bbappend</filename> file: 201 <filename>.bbappend</filename> file:
199 <literallayout class='monospaced'> 202 <literallayout class='monospaced'>
200 FILESEXTRAPATHS_prepend := "${THISDIR}/files:" 203 FILESEXTRAPATHS_prepend := "${THISDIR}/files:"