From bf2a7a31ca2e0318b035997e2f0fa5ea2b2b9b68 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Thu, 31 May 2018 14:12:34 -0700 Subject: sdk-manual: Edits to "Installing Additional Items Into the Extensible SDK" Minor edits. (From yocto-docs rev: 3ed2c1026bf03feb03001e00daec55b94d7dc35b) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/sdk-manual/sdk-extensible.xml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/documentation/sdk-manual/sdk-extensible.xml b/documentation/sdk-manual/sdk-extensible.xml index bc77bed86c..a586e3cdb5 100644 --- a/documentation/sdk-manual/sdk-extensible.xml +++ b/documentation/sdk-manual/sdk-extensible.xml @@ -1681,16 +1681,14 @@ Installing Additional Items Into the Extensible SDK - The extensible SDK typically only comes with a small number of tools - and libraries out of the box. - If you have a minimal SDK, then it starts mostly empty and is - populated on-demand. - However, sometimes you will need to explicitly install extra items - into the SDK. + Out of the box the extensible SDK typically only comes with a small + number of tools and libraries. + A minimal SDK starts mostly empty and is populated on-demand. + Sometimes you must explicitly install extra items into the SDK. If you need these extra items, you can first search for the items using the devtool search command. For example, suppose you need to link to libGL but you are not sure - which recipe provides it. + which recipe provides libGL. You can use the following command to find out: $ devtool search libGL @@ -1701,17 +1699,19 @@ $ devtool sdk-install mesa - By default, the devtool sdk-install assumes the - item is available in pre-built form from your SDK provider. + By default, the devtool sdk-install command + assumes the item is available in pre-built form from your SDK + provider. If the item is not available and it is acceptable to build the item from source, you can add the "-s" option as follows: $ devtool sdk-install -s mesa - It is important to remember that building the item from source takes - significantly longer than installing the pre-built artifact. - Also, if no recipe exists for the item you want to add to the SDK, you - must instead add it using the devtool add command. + It is important to remember that building the item from source + takes significantly longer than installing the pre-built artifact. + Also, if no recipe exists for the item you want to add to the SDK, + you must instead add the item using the + devtool add command. -- cgit v1.2.3-54-g00ecf