diff options
-rw-r--r-- | documentation/dev-manual/dev-manual-common-tasks.xml | 2 | ||||
-rw-r--r-- | documentation/kernel-dev/kernel-dev-advanced.xml | 2 | ||||
-rw-r--r-- | documentation/kernel-dev/kernel-dev-common.xml | 5 |
3 files changed, 5 insertions, 4 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index 95ae0076dd..ebd12d7240 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml | |||
@@ -445,7 +445,7 @@ | |||
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. |
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 e18eb31923..11a527ce24 100644 --- a/documentation/kernel-dev/kernel-dev-common.xml +++ b/documentation/kernel-dev/kernel-dev-common.xml | |||
@@ -97,8 +97,9 @@ | |||
97 | <literallayout class='monospaced'> | 97 | <literallayout class='monospaced'> |
98 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}" | 98 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}" |
99 | </literallayout> | 99 | </literallayout> |
100 | The path <filename>${THISDIR}/${</filename><ulink url='&YOCTO_DOCS_REF_URL;#var-PN'><filename>PN</filename></ulink><filename>}</filename> expands | 100 | 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> |
101 | to "linux-yocto" in the current directory for this example. | 101 | expands to "linux-yocto" in the current directory for this |
102 | example. | ||
102 | If you add any new files that modify the kernel recipe and you | 103 | If you add any new files that modify the kernel recipe and you |
103 | have extended <filename>FILESPATH</filename> as | 104 | have extended <filename>FILESPATH</filename> as |
104 | described above, you must place the files in your layer in the | 105 | described above, you must place the files in your layer in the |