summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual/sdk-extensible.xml
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2018-07-16 14:28:52 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-08-15 10:28:12 +0100
commit67fd9e2e606f9a9354c9b46f193a5da5e1ac8af3 (patch)
tree6e135d8a310fb8e684f68a2663bf27331149fe21 /documentation/sdk-manual/sdk-extensible.xml
parentde9bce8f89f916b240504b0be0f6eaa47622f2f4 (diff)
downloadpoky-67fd9e2e606f9a9354c9b46f193a5da5e1ac8af3.tar.gz
sdk-manual: Updates to sections for updating installed Ext SDKs
There are two sections that deal with this topic. One is from the standpoint of a user using a 3rd party published and installed extensible SDK ("Applying Updates to an Installed Extensible SDK"). The other is from the standpoint of a person providing Extensible SDKs for consumption ("Providing Updates to the Extensible SDK After Installation"). These sections needed some closer examination regarding fully describing what was going on. I provided some re-writes to both. (From yocto-docs rev: 62028ea4df684e495e78d00a440318d061098f15) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/sdk-manual/sdk-extensible.xml')
-rw-r--r--documentation/sdk-manual/sdk-extensible.xml28
1 files changed, 16 insertions, 12 deletions
diff --git a/documentation/sdk-manual/sdk-extensible.xml b/documentation/sdk-manual/sdk-extensible.xml
index 5215a9d096..09f06088d2 100644
--- a/documentation/sdk-manual/sdk-extensible.xml
+++ b/documentation/sdk-manual/sdk-extensible.xml
@@ -1715,31 +1715,35 @@
1715 </para> 1715 </para>
1716 </section> 1716 </section>
1717 1717
1718 <section id='sdk-updating-the-extensible-sdk'> 1718 <section id='sdk-applying-updates-to-an-installed-extensible-sdk'>
1719 <title>Updating the Extensible SDK</title> 1719 <title>Applying Updates to an Installed Extensible SDK</title>
1720 1720
1721 <para> 1721 <para>
1722 If you are working with an extensible SDK that gets occasionally 1722 If you are working with an installed extensible SDK that gets
1723 updated (e.g. typically when that SDK has been provided to you by 1723 occasionally updated (e.g. a third-party SDK), then you will need
1724 another party), then you will need to manually pull down those 1724 to manually "pull down" the updates into the installed SDK.
1725 updates to your installed SDK.
1726 </para> 1725 </para>
1727 1726
1728 <para> 1727 <para>
1729 To update your installed SDK, run the following: 1728 To update your installed SDK, use <filename>devtool</filename> as
1729 follows:
1730 <literallayout class='monospaced'> 1730 <literallayout class='monospaced'>
1731 $ devtool sdk-update 1731 $ devtool sdk-update
1732 </literallayout> 1732 </literallayout>
1733 The previous command assumes your SDK provider has set the default 1733 The previous command assumes your SDK provider has set the default
1734 update URL for you. 1734 update URL for you through the
1735 If that URL has not been set, you need to specify it yourself as 1735 <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_UPDATE_URL'><filename>SDK_UPDATE_URL</filename></ulink>
1736 follows: 1736 variable as described in the
1737 "<link linkend='sdk-providing-updates-to-the-extensible-sdk-after-installation'>Providing Updates to the Extensible SDK After Installation</link>"
1738 section.
1739 If the SDK provider has not set that default URL, you need to
1740 specify it yourself in the command as follows:
1737 <literallayout class='monospaced'> 1741 <literallayout class='monospaced'>
1738 $ devtool sdk-update <replaceable>path_to_update_directory</replaceable> 1742 $ devtool sdk-update <replaceable>path_to_update_directory</replaceable>
1739 </literallayout> 1743 </literallayout>
1740 <note> 1744 <note>
1741 The URL needs to point specifically to a published SDK and not an 1745 The URL needs to point specifically to a published SDK and
1742 SDK installer that you would download and install. 1746 not to an SDK installer that you would download and install.
1743 </note> 1747 </note>
1744 </para> 1748 </para>
1745 </section> 1749 </section>