summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
authorKristi Rifenbark <kristi.rifenbark@gmail.com>2017-08-10 15:07:00 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-02 00:52:47 +0100
commit203a8393e4e14e0cb4b51ed548445c6cfce8153a (patch)
treefed99eaf730477ad064d80aa0c9741be0a692b3b /documentation/dev-manual
parent6716106c6f49b2463b110a837466e434d52a7304 (diff)
downloadpoky-203a8393e4e14e0cb4b51ed548445c6cfce8153a.tar.gz
dev-manual: Updated "Sharing Files Between Recipes"
Updated text for sysroot terminology, and clarity. Fixed a capitalization error. (From yocto-docs rev: 4eea6497663efc937cddf4700298f5824ade7b47) Signed-off-by: Kristi Rifenbark <kristi.rifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index cc69d641c5..5a00533f33 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -2887,7 +2887,7 @@
2887 the build host. 2887 the build host.
2888 For example, an application linking to a common library needs 2888 For example, an application linking to a common library needs
2889 access to the library itself and its associated headers. 2889 access to the library itself and its associated headers.
2890 The way this access is accomplished is by populating sysroot 2890 The way this access is accomplished is by populating a sysroot
2891 with files. 2891 with files.
2892 Each recipe has two sysroots in its work directory, one for 2892 Each recipe has two sysroots in its work directory, one for
2893 target files 2893 target files
@@ -2896,7 +2896,7 @@
2896 (<filename>recipe-sysroot-native</filename>). 2896 (<filename>recipe-sysroot-native</filename>).
2897 <note> 2897 <note>
2898 You could find the term "staging" used within the Yocto 2898 You could find the term "staging" used within the Yocto
2899 project regarding files populating sysroot (e.g. the 2899 project regarding files populating sysroots (e.g. the
2900 <ulink url='&YOCTO_DOCS_REF_URL;#var-STAGING_DIR'><filename>STAGING_DIR</filename></ulink> 2900 <ulink url='&YOCTO_DOCS_REF_URL;#var-STAGING_DIR'><filename>STAGING_DIR</filename></ulink>
2901 variable). 2901 variable).
2902 </note> 2902 </note>
@@ -2930,14 +2930,14 @@
2930 the sysroot. 2930 the sysroot.
2931 The following example shows how you could add the 2931 The following example shows how you could add the
2932 <filename>/opt</filename> directory to the list of 2932 <filename>/opt</filename> directory to the list of
2933 directories: 2933 directories within a recipe:
2934 <literallayout class='monospaced'> 2934 <literallayout class='monospaced'>
2935 SYSROOT_DIRS += "/opt" 2935 SYSROOT_DIRS += "/opt"
2936 </literallayout> 2936 </literallayout>
2937 </para> 2937 </para>
2938 2938
2939 <para> 2939 <para>
2940 for a more complete description of the 2940 For a more complete description of the
2941 <ulink url='&YOCTO_DOCS_REF_URL;#ref-tasks-populate_sysroot'><filename>do_populate_sysroot</filename></ulink> 2941 <ulink url='&YOCTO_DOCS_REF_URL;#ref-tasks-populate_sysroot'><filename>do_populate_sysroot</filename></ulink>
2942 task and its associated functions, see the 2942 task and its associated functions, see the
2943 <ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-staging'><filename>staging</filename></ulink> 2943 <ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-staging'><filename>staging</filename></ulink>