From a2712c3752498b9b85724d61c63c7d9e7f397934 Mon Sep 17 00:00:00 2001 From: Kristi Rifenbark Date: Thu, 10 Aug 2017 15:07:00 -0700 Subject: [PATCH] dev-manual: Updated "Sharing Files Between Recipes" Updated text for sysroot terminology, and clarity. Fixed a capitalization error. (From yocto-docs rev: 2ee92ccf677135ea47d621d3583a16649e5a9f13) Signed-off-by: Kristi Rifenbark Signed-off-by: Richard Purdie --- documentation/dev-manual/dev-manual-common-tasks.xml | 8 ++++---- 1 file 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 6e6577220d..7d694379cd 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml @@ -3192,7 +3192,7 @@ the build host. For example, an application linking to a common library needs access to the library itself and its associated headers. - The way this access is accomplished is by populating sysroot + The way this access is accomplished is by populating a sysroot with files. Each recipe has two sysroots in its work directory, one for target files @@ -3201,7 +3201,7 @@ (recipe-sysroot-native). You could find the term "staging" used within the Yocto - project regarding files populating sysroot (e.g. the + project regarding files populating sysroots (e.g. the STAGING_DIR variable). @@ -3235,14 +3235,14 @@ the sysroot. The following example shows how you could add the /opt directory to the list of - directories: + directories within a recipe: SYSROOT_DIRS += "/opt" - for a more complete description of the + For a more complete description of the do_populate_sysroot task and its associated functions, see the staging