http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newt/install/newt_mac/index.html ---------------------------------------------------------------------- diff --git a/latest/newt/install/newt_mac/index.html b/latest/newt/install/newt_mac/index.html index 0afa490..4855bbb 100644 --- a/latest/newt/install/newt_mac/index.html +++ b/latest/newt/install/newt_mac/index.html @@ -211,14 +211,6 @@ - <li > - <a href="../../../os/get_started/docker/">Docker Container Option</a> - </li> - - - - - <li ><a href="../../../os/get_started/native_tools/">Native install Option</a> @@ -261,6 +253,14 @@ <li > + <a href="../../../os/get_started/docker/">Docker Container Option</a> + </li> + + + + + + <li > <a href="../../../os/get_started/project_create/">Create Your First Project</a> </li> @@ -356,7 +356,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> @@ -391,178 +391,155 @@ </div> </div> - <h2 id="install-newt-tool-on-your-mac">Install newt tool on your Mac</h2> -<h3 id="getting-your-mac-ready">Getting your Mac Ready</h3> -<p>If you want to build the <em>newt</em> tool from its source code, follow the following steps:</p> -<p><br></p> -<h4 id="1-install-homebrew-on-your-mac-os-x">1. Install Homebrew on your Mac OS X</h4> + <h2 id="installing-newt-on-mac-os">Installing Newt on Mac OS</h2> +<p>Newt is supported on Mac OS X 64 bit platforms and has been tested on Mac OS 10.9 and higher.</p> +<p>This page shows you how to install the following versions of newt:</p> <ul> -<li>Do you have Homebrew? If not, open a terminal on your Mac and paste the following at a Terminal prompt. It will ask you for your sudo password.</li> +<li>The latest stable release version (1.0.0) </li> +<li>The latest from the master branch (unstable)</li> </ul> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" +<p><strong>Note:</strong> If you would like to contribute to the newt tool, see <a href="../../../faq/go_env">Setting Up Go Environment to Contribute to Newt and Newtmgr Tools</a>.</p> +<h3 id="installing-homebrew">Installing Homebrew</h3> +<p>If you do not have Homebrew installed, run the following command. You will be prompted for your sudo password.</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" </pre></div> -<p>Alternatively, you can just extract (or <code>git clone</code>) Homebrew and install it to <code>/usr/local</code>.</p> +<p>You can also extract (or <code>git clone</code>) Homebrew and install it to /usr/local.</p> <p><br></p> -<h4 id="2-install-go-the-programming-language">2. Install Go, the programming language</h4> -<ul> -<li> -<p>Go language environment dictates a directory structure. Known in Go parlanace as workspace, it must contain three sibling directories with the directory names src, pkg and bin, as explained below. </p> -<ul> -<li> -<p>src contains Go source files organized into packages (one package per directory),</p> -</li> -<li> -<p>pkg contains package objects, and</p> -</li> -<li> -<p>bin contains executable commands.</p> -</li> -</ul> -<p>The GOPATH environment variable specifies the location of your workspace. To setup this workspace environment, create a 'dev' directory and then a 'go' directory under it. Set the GOPATH environment variable to this directory where you will soon clone the <em>newt</em> tool repository.</p> -</li> -</ul> -<p><br></p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> $ cd $HOME - $ mkdir -p dev/go - $ cd dev/go - $ export GOPATH=`pwd` +<h3 id="installing-newt">Installing Newt</h3> +<p>Add the <strong> runtimeco/homebrew-mynewt </strong> tap:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$brew tap runtimeco/homebrew-mynewt +$brew update </pre></div> -<p>(Note that you need to add export statements to ~/.bash_profile to export variables permanently. Don't forget to source the file for the change to go into effect.)</p> <p><br></p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> $ vi ~/.bash_profile - $ source ~/.bash_profile +<h4 id="installing-the-latest-release-version-of-newt">Installing the Latest Release Version of Newt</h4> +<p>Install the latest stable release version (1.0.0) of newt:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$brew install mynewt-newt +==> Installing mynewt-newt from runtimeco/mynewt +==> Downloading https://github.com/runtimeco/binary-releases/raw/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.bottle.tar.gz +==> Downloading from https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks. +######################################################################## 100.0% +==> Pouring mynewt-newt-1.0.0.mavericks.bottle.tar.gz +ðº /usr/local/Cellar/mynewt-newt/1.0.0: 3 files, 10.4MB </pre></div> -<p><br></p> -<ul> -<li>Next, using <em>brew</em>, install Go. When installed, Go offers you as a developer a language environment (to compile Go code), construct Go packages (to assemble Go packages) and import Go code (from github). In the next step, you will use the Go commands to import <em>newt</em> repo into your local Go environment.</li> -</ul> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> $ brew install go - ==> - ... - ... - ==> *Summary* - ðº /usr/local/Cellar/go/1.5.1: 5330 files, 273M +<p><br> +<strong>Note:</strong> This installs the newt 1.0.0 binary that has been tested on Mac OS 10.9 and higher. If you are running an earlier version of Mac OS, the installation will install the latest version of Go and compile newt locally.</p> +<p><br> +Check that you are using the installed version of newt:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$which newt +/usr/local/bin/newt +$ls -l /usr/local/bin/newt +lrwxr-xr-x 1 user staff 36 Apr 15 08:18 /usr/local/bin/newt -> ../Cellar/mynewt-newt/1.0.0/bin/newt +$newt version +Apache Newt (incubating) version: 1.0.0 </pre></div> -<p>Alternatively, you can download the Go package directly from (https://golang.org/dl/) instead of brewing it. Install it in /usr/local directory.</p> -<p><br></p> -<h4 id="3-create-local-repository">3. Create local repository</h4> -<ul> -<li>Use Go commands to copy the directory (currently the ASF incubator directory). Be patient as it may take a minute or two. Check the directories installed.</li> -</ul> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> $ go get mynewt.apache.org/newt/... -</pre></div> - - -<ul> -<li>Check that newt.go is in place.</li> -</ul> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> $ ls $GOPATH/src/mynewt.apache.org/newt - DISCLAIMER NOTICE newt newtvm viper - LICENSE README.md newtmgr util yaml +<p><strong>Note:</strong> If you previously built newt from source and the output of <code>which newt</code> shows "$GOPATH/bin/newt", you will need to move "$GOPATH/bin" after "/usr/local/bin" in your $PATH.</p> +<p><br> +Get information about newt: </p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$newt help +Newt allows you to create your own embedded application based on the Mynewt +operating system. Newt provides both build and package management in a single +tool, which allows you to compose an embedded application, and set of +projects, and then build the necessary artifacts from those projects. For more +information on the Mynewt operating system, please visit +https://mynewt.apache.org/. + +Please use the newt help command, and specify the name of the command you want +help for, for help on how to use a specific command + +Usage: + newt [flags] + newt [command] + +Examples: + newt + newt help [<command-name>] + For help on <command-name>. If not specified, print this message. + +Available Commands: + build Build one or more targets + clean Delete build artifacts for one or more targets + create-image Add image header to target binary + debug Open debugger session to target + info Show project info + install Install project dependencies + load Load built target to board + mfg Manufacturing flash image commands + new Create a new project + pkg Create and manage packages in the current workspace + run build/create-image/download/debug <target> + size Size of target components + sync Synchronize project dependencies + target Commands to create, delete, configure, and query targets + test Executes unit tests for one or more packages + upgrade Upgrade project dependencies + vals Display valid values for the specified element type(s) + version Display the Newt version number + +Flags: + -h, --help Help for newt commands + -j, --jobs int Number of concurrent build jobs (default 8) + -l, --loglevel string Log level (default "WARN") + -o, --outfile string Filename to tee output to + -q, --quiet Be quiet; only display error output + -s, --silent Be silent; don't output anything + -v, --verbose Enable verbose output when executing commands + +Use "newt [command] --help" for more information about a command. </pre></div> <p><br></p> -<h4 id="4-build-the-newt-tool">4. Build the Newt tool</h4> +<h4 id="installing-newt-from-the-master-branch">Installing Newt from the Master Branch</h4> +<p>We recommend that you use the latest stable release version (1.0.0) of newt. If you would like to use the master branch with the latest updates, you can install newt from the HEAD of the master branch. </p> +<p><strong> Notes: </strong></p> <ul> -<li>Use Go to run the newt.go program to build the <em>newt</em> tool. The command <code>go install</code> compiles and writes the resulting executable to an output file named <code>newt</code>, which is then installed, along with its dependencies, in $GOPATH/bin.</li> +<li>The master branch may be unstable.</li> +<li>This installation will install the latest version of Go on your computer, if it is not installed, and compile newt locally. </li> </ul> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> $ cd $GOPATH/src/mynewt.apache.org/newt/newt - $ go install - $ ls "$GOPATH"/bin/ - newt newtmgr newtvm +<p><br> +If you previously installed newt using brew, unlink the current version:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$brew unlink mynewt-newt </pre></div> -<p><br></p> -<ul> -<li>At this point, you can try using <em>newt</em>. For example, check for the version number by typing 'newt version'. See all the possible commands available to a user of newt by typing 'newt -h'.</li> -</ul> -<p>(Note: If you are going to be modifying the <em>newt</em> often and going to be compile the program every time you call it, you will want to store the command in a variable in your .bash_profile. So type in <code>export newt="go run $GOPATH/mynewt.apache.org/newt/newt/newt.go"</code> in your .bash_profile and execute it by calling <code>$newt</code> at the prompt instead of <code>newt</code>. Essentially, <code>$newt</code> calls <code>go run</code> which runs the compiled binary directly without producing an executable. Don't forget to reload the updated bash profile by typing <code>source ~/.bash_profile</code> at the prompt! )</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> $ newt version - Newt version: 1.0 - $ newt -h - Newt allows you to create your own embedded application based on the Mynewt - operating system. Newt provides both build and package management in a single - tool, which allows you to compose an embedded application, and set of - projects, and then build the necessary artifacts from those projects. For more - information on the Mynewt operating system, please visit - https://mynewt.apache.org/. - - Please use the newt help command, and specify the name of the command you want - help for, for help on how to use a specific command - - Usage: - newt [flags] - newt [command] - - Examples: - newt - newt help [<command-name>] - For help on <command-name>. If not specified, print this message. - - Available Commands: - build Build one or more targets - clean Delete build artifacts for one or more targets - create-image Add image header to target binary - debug Open debugger session to target - info Show project info - install Install project dependencies - load Load built target to board - mfg Manufacturing flash image commands - new Create a new project - pkg Create and manage packages in the current workspace - run build/create-image/download/debug <target> - size Size of target components - sync Synchronize project dependencies - target Commands to create, delete, configure, and query targets - test Executes unit tests for one or more packages - upgrade Upgrade project dependencies - vals Display valid values for the specified element type(s) - version Display the Newt version number - - Flags: - -h, --help Help for newt commands - -j, --jobs int Number of concurrent build jobs (default 8) - -l, --loglevel string Log level (default "WARN") - -o, --outfile string Filename to tee output to - -q, --quiet Be quiet; only display error output - -s, --silent Be silent; don't output anything - -v, --verbose Enable verbose output when executing commands - - Use "newt [command] --help" for more information about a comma +<p><br> +Install the latest unstable version of newt from the master branch:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$brew install --HEAD mynewt-newt +==> Installing mynewt-newt from runtimeco/mynewt +==> Cloning https://github.com/apache/incubator-mynewt-newt.git +Cloning into 'Users/<username>/Library/Caches/Homebrew/mynewt-newt--git'... +remote: Counting objects: 623, done. +remote: Compressing objects: 100% (501/501), done. +remote: Total 623 (delta 154), reused 323 (delta 84), pack-reused 0 +Receiving objects: 100% (623/623), 1.10 MiB | 0 bytes/s, done. +Resolving deltas: 100% (154/154), done. +==> Checking out branch master +==> go install +ðº /usr/local/Cellar/mynewt-newt/HEAD-409f7d3: 3 files, 10.4MB, built in 10 seconds +$newt version +Apache Newt (incubating) version: 1.0.0-dev </pre></div> -<p><br></p> -<h4 id="5-updating-the-newt-tool">5. Updating the Newt tool</h4> -<ul> -<li>You will update the newt tool in the same place as you initially installed the newt tool.</li> -<li>Start by updating the git repository of the newt tool (you can change to a different branch using git checkout [branch] if you need to)</li> -<li>Then update each of the tools newt, newtmgr and newtvm as needed</li> -</ul> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> $ cd $GOPATH/src/mynewt.apache.org/newt - $ git pull - $ cd newt - $ go install - $ cd ../newtmgr - $ go install - $ cd ../newtvm - $ go install - $ ls "$GOPATH"/bin/ - newt newtmgr newtvm +<p><br> +To switch back to the stable release version (1.0.0) of newt, you can run:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$brew switch mynewt-newt 1.0.0 +Cleaning /usr/local/Cellar/mynewt-newt/1.0.0 +Cleaning /usr/local/Cellar/mynewt-newt/HEAD-409f7d3 +1 links created for /usr/local/Cellar/mynewt-newt/1.0.0 +$newt version +Apache Newt (incubating) version: 1.0.0 </pre></div> -<p>That should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.</p> <p><br></p> <div class="row">
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newt/newt_intro/index.html ---------------------------------------------------------------------- diff --git a/latest/newt/newt_intro/index.html b/latest/newt/newt_intro/index.html index 5431df7..af960c6 100644 --- a/latest/newt/newt_intro/index.html +++ b/latest/newt/newt_intro/index.html @@ -310,7 +310,7 @@ <li><a href=" - ../../faq/how_to_edit_docs/ + ../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newt/newt_operation/index.html ---------------------------------------------------------------------- diff --git a/latest/newt/newt_operation/index.html b/latest/newt/newt_operation/index.html index 1c80df7..3533f51 100644 --- a/latest/newt/newt_operation/index.html +++ b/latest/newt/newt_operation/index.html @@ -310,7 +310,7 @@ <li><a href=" - ../../faq/how_to_edit_docs/ + ../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newt/newt_ops/index.html ---------------------------------------------------------------------- diff --git a/latest/newt/newt_ops/index.html b/latest/newt/newt_ops/index.html index 46b39ec..6478e8c 100644 --- a/latest/newt/newt_ops/index.html +++ b/latest/newt/newt_ops/index.html @@ -468,7 +468,7 @@ <li><a href=" - ../../faq/how_to_edit_docs/ + ../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_config/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_config/index.html b/latest/newtmgr/command_list/newtmgr_config/index.html index e7b1cf8..15014cc 100644 --- a/latest/newtmgr/command_list/newtmgr_config/index.html +++ b/latest/newtmgr/command_list/newtmgr_config/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_conn/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_conn/index.html b/latest/newtmgr/command_list/newtmgr_conn/index.html index cbec47a..c6b42d7 100644 --- a/latest/newtmgr/command_list/newtmgr_conn/index.html +++ b/latest/newtmgr/command_list/newtmgr_conn/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_crash/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_crash/index.html b/latest/newtmgr/command_list/newtmgr_crash/index.html index 6b1beaf..3216f27 100644 --- a/latest/newtmgr/command_list/newtmgr_crash/index.html +++ b/latest/newtmgr/command_list/newtmgr_crash/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_datetime/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_datetime/index.html b/latest/newtmgr/command_list/newtmgr_datetime/index.html index 86be552..87ade09 100644 --- a/latest/newtmgr/command_list/newtmgr_datetime/index.html +++ b/latest/newtmgr/command_list/newtmgr_datetime/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_echo/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_echo/index.html b/latest/newtmgr/command_list/newtmgr_echo/index.html index 41c0375..9eb2ea1 100644 --- a/latest/newtmgr/command_list/newtmgr_echo/index.html +++ b/latest/newtmgr/command_list/newtmgr_echo/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_fs/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_fs/index.html b/latest/newtmgr/command_list/newtmgr_fs/index.html index 11363f6..39de006 100644 --- a/latest/newtmgr/command_list/newtmgr_fs/index.html +++ b/latest/newtmgr/command_list/newtmgr_fs/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_image/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_image/index.html b/latest/newtmgr/command_list/newtmgr_image/index.html index 855876a..72dc62a 100644 --- a/latest/newtmgr/command_list/newtmgr_image/index.html +++ b/latest/newtmgr/command_list/newtmgr_image/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_logs/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_logs/index.html b/latest/newtmgr/command_list/newtmgr_logs/index.html index e5b8cd6..958aff2 100644 --- a/latest/newtmgr/command_list/newtmgr_logs/index.html +++ b/latest/newtmgr/command_list/newtmgr_logs/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_mpstats/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_mpstats/index.html b/latest/newtmgr/command_list/newtmgr_mpstats/index.html index 16e7b01..6965d8a 100644 --- a/latest/newtmgr/command_list/newtmgr_mpstats/index.html +++ b/latest/newtmgr/command_list/newtmgr_mpstats/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_reset/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_reset/index.html b/latest/newtmgr/command_list/newtmgr_reset/index.html index f77de3d..8314005 100644 --- a/latest/newtmgr/command_list/newtmgr_reset/index.html +++ b/latest/newtmgr/command_list/newtmgr_reset/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_run/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_run/index.html b/latest/newtmgr/command_list/newtmgr_run/index.html index 3ca42aa..45a69a2 100644 --- a/latest/newtmgr/command_list/newtmgr_run/index.html +++ b/latest/newtmgr/command_list/newtmgr_run/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_stat/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_stat/index.html b/latest/newtmgr/command_list/newtmgr_stat/index.html index 34d9326..16ffde8 100644 --- a/latest/newtmgr/command_list/newtmgr_stat/index.html +++ b/latest/newtmgr/command_list/newtmgr_stat/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/command_list/newtmgr_taskstats/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/command_list/newtmgr_taskstats/index.html b/latest/newtmgr/command_list/newtmgr_taskstats/index.html index 37b4482..09a3681 100644 --- a/latest/newtmgr/command_list/newtmgr_taskstats/index.html +++ b/latest/newtmgr/command_list/newtmgr_taskstats/index.html @@ -397,8 +397,13 @@ - <li > - <a href="../../installing/">Install</a> + + + <li><a href=" + ../../install_mac/ +">Install</a> + + </li> @@ -420,7 +425,7 @@ <li><a href=" - ../../../faq/how_to_edit_docs/ + ../../../faq/go_env/ ">Appendix</a> @@ -524,8 +529,8 @@ Return Code = 0 </li> <li class="pull-right"> - <a href=../../installing/> - Next: Install + <a href=../../install_mac/> + Next: Install Newtmgr On Mac OS <span class="fa fa-arrow-right"></span> </a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/install_linux/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/install_linux/index.html b/latest/newtmgr/install_linux/index.html new file mode 100644 index 0000000..716fdd1 --- /dev/null +++ b/latest/newtmgr/install_linux/index.html @@ -0,0 +1,482 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + + <!-- This is broken by doc revisioning. + <link rel="canonical" href="http://mynewt.apache.org/newtmgr/install_linux/"> --> + <link rel="shortcut icon" href="../../img/favicon.ico"> + + <title>Install Newtmgr On Linux - Apache Mynewt</title> + + <link href="../../css/bootstrap-3.0.3.min.css" rel="stylesheet"> + <link rel="stylesheet" href="../../css/highlight.css"> + <link href="../../css/base.css" rel="stylesheet"> + <link href="../../css/custom.css" rel="stylesheet"> + <link href="../../css/v2.css" rel="stylesheet"> + <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet"> + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> + <link href="../../extra.css" rel="stylesheet"> + + <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> + <!--[if lt IE 9]> + <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> + <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> + <![endif]--> + + + <script> + (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ + (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), + m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) + })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); + + ga('create', 'UA-72162311-1', 'auto'); + ga('send', 'pageview'); + </script> + + </head> + + + <body class="Install Newtmgr On Linux"> + + + <div class="container"> + <div class="row v2-main-banner"> + <a class="logo-cell" href="/"> + <img class="logo" src="/img/logo.png"> + </a> + <div class="tagline-cell"> + <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4> + </div> + <div class="news-cell"> + <div class="well"> + <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.0.0</a> released (March 22, 2017) + </div> + </div> + </div> +</div> + + + + + + + + +<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="150" role="navigation"> + <div class="container"> + <!-- Collapsed navigation --> + <div class="navbar-header"> + <!-- Expander button --> + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> + <span class="sr-only">Toggle navigation</span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + + </div> + + <!-- Expanded navigation --> + <div class="navbar-collapse collapse"> + <!-- Main navigation --> + <ul class="nav navbar-nav navbar-right"> + <li + class="" +> + <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a> + </li> + <li + class="important" +> + <a href="/quick-start/">Quick Start</a> + </li> + <li + class="" +> + <a href="/about/">About</a> + </li> + <li + class="" +> + <a href="/talks/">Talks</a> + </li> + <li + class="active" +> + <a href="/latest/os/introduction">Documentation</a> + </li> + <li + class="" +> + <a href="/download/">Download</a> + </li> + <li + class="" +> + <a href="/community/">Community</a> + </li> + <li + class="" +> + <a href="/events/">Events</a> + </li> + </ul> + + <!-- Search, Navigation and Repo links --> + <ul class="nav navbar-nav navbar-right"> + + </ul> + </div> + </div> +</nav> + + + + <div class="container"> + + <div class="row"> + <div class="col-md-3 v2-sidebar sidebar-container"><div id="docSidebar" class="hidden-print" role="complementary"> + <div class="top"> + <div role="search"> + <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get"> + <div class="form-group"> + <input type="text" name="q" class="form-control" placeholder="Search documentation" /> + </div> + </form> + </div> + </div> + <ul class="toc-nav"> + <li class="doc-version"> +<select class="form-control" onchange="if (this.value) window.location.href=this.value"> + + <option + value="/develop/os/introduction" + selected="selected" + > + Version: develop (latest) + </option> + + <option + value="/v0_9_0/os/introduction" + + > + Version: 0.9.0 + </option> + +</select> +</li> + + + + + + + + + + + + + + + + + + + + + + <li ><a href="../../os/introduction/">Mynewt Documentation</a> + + + <ul> + + + + + + + + <li ><a href="../../os/get_started/get_started/">Basic Setup</a> + + + </li> + + + + + + <li > + <a href="../../os/get_started/vocabulary/">Concepts</a> + </li> + + + + + + + + <li ><a href="../../os/tutorials/tutorials/">Tutorials</a> + + + </li> + + + + + + + + <li ><a href="../../os/os_user_guide/">OS User Guide</a> + + + </li> + + + + + + + + <li><a href=" + ../../network/ble/ble_intro/ +">BLE User Guide</a> + + + </li> + + + + + + + + <li ><a href="../../newt/newt_intro/">Newt Tool Guide</a> + + + </li> + + + + + + + + <li ><a href="../overview/">Newt Manager Guide</a> + + + <ul> + + + + + + + + <li><a href=" + ../command_list/newtmgr_config/ +">Command Guide</a> + + + </li> + + + + + + + + <li><a href=" + ../install_mac/ +">Install</a> + + + <ul> + + + + <li > + <a href="../install_mac/">Install Newtmgr On Mac OS</a> + </li> + + + + + + <li class="active"> + <a href="./">Install Newtmgr On Linux</a> + </li> + + + + </ul> + + </li> + + + + </ul> + + </li> + + + + </ul> + + </li> + + + + + + + + <li><a href=" + ../../faq/go_env/ +">Appendix</a> + + + </li> + + + + </ul> +</div></div> + + <div class="col-md-9" role="main"> + <div class="doc-header"> + <div role="navigation" aria-label="breadcrumbs navigation"> + <ul class="wy-breadcrumbs pull-right"> + <li><a href="/latest/os/introduction">Docs</a></li> + + + + <li>» <a href="../overview/">Newt Manager Guide</a></li> + + + + <li>» <a href="../install_mac/">Install</a></li> + + + + <li>» Install Newtmgr On Linux</li> + + + + </ul> +</div> + </div> + + <h1 id="installing-newtmgr-on-linux">Installing Newtmgr on Linux</h1> +<p>This page shows you how to install newtmgr from source code on Linux.</p> +<h3 id="install-go-golang">Install Go (golang)</h3> +<p>Install Go if it is not installed. The Newtmgr tool version 1.0.0 requires Go version 1.7 or later. Currently, the latest Go version that Ubuntu installs is +1.6. You can run <code>apt-get install golang-1.7-go</code> to install version 1.7. You can also download version 1.7 from <a href="https://golang.org/dl/">https:/ +/golang.org/dl/</a>.</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"><span style="background-color: #ffffcc">$sudo apt-get install golang-1.7-go +</span>Reading package lists... Done + ... +Unpacking golang-1.7-go (1.7.1-2ubuntu1) ... +Setting up golang-1.7-go (1.7.1-2ubuntu1) ... +$ +<span style="background-color: #ffffcc">$sudo ln -sf ../lib/go-1.7/bin/go /usr/bin/go +</span>$go version +go version go1.7.1 linux/amd64 +</pre></div> + + +<p><br></p> +<p>To use go, you must set a <code>$GOPATH</code> variable in your environment. This tells +go where to put all the packages it downloads, builds and runs.</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ mkdir $HOME/dev +$ export GOPATH=$HOME/dev/Go +</pre></div> + + +<p><br></p> +<p>Its best to add this to your <code>.profile</code> so its set automatically for your +environment. </p> +<p><br></p> +<h3 id="download-the-newtmgr-source">Download the newtmgr source</h3> +<p>You will first download the source code for newt.</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">go get mynewt.apache.org/newt/... +</pre></div> + + +<p><br></p> +<h3 id="building-newtmgr">Building newtmgr</h3> +<p>Change into the directory where the newmgr tool was downloaded and +install the newtmgr tool</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$cd $GOPATH/src/mynewt.apache.org/newt/newtmgr +$go install +$ls $GOPATH/bin +... newtmgr ... +</pre></div> + + +<p><br></p> +<p><strong>Note:</strong> If the <code>go install</code> command results in errors indicating some package +cannot be found, do a <code>go get</code> to download all the third-party files needed +from github.com and then run <code>go install</code> again. </p> +<h3 id="add-to-your-path">Add to your Path</h3> +<p>Add your <code>$GOPATH/bin</code> directory to your path.</p> + + <div class="row"> + + + + +<ul class="nav nav-pills" style="margin-bottom: 10px"> + <li> + + <a href=../install_mac/> + <span class="fa fa-arrow-left"></span> + Previous: Install Newtmgr On Mac OS + </a> + + </li> + <li class="pull-right"> + + <a href=../../faq/go_env/> + Next: Setting Up Go to Contribute to Newt and Newtmgr Tools + <span class="fa fa-arrow-right"></span> + </a> + + </li> +</ul> + </div> + <footer class="row"> + <div class="col-xs-12"> + + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> + + </div> + <div class="col-xs-12"> + <div class="logos"> + <img src="/img/asf_logo_wide_small.png" alt="Apache" title="Apache"> + <small class="footnote"> + MyNewt is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. + </small> + <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache Incubator"> + </div> + </div> +</footer> + </div> + </div> + + + </div> + + <script src="../../js/jquery-1.10.2.min.js"></script> + <script src="../../js/bootstrap-3.0.3.min.js"></script> + <script src="../../js/highlight.pack.js"></script> + <script src="../../js/base.js"></script> + <script src="../../js/custom.js"></script> + + </body> +</html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/install_mac/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/install_mac/index.html b/latest/newtmgr/install_mac/index.html new file mode 100644 index 0000000..845afee --- /dev/null +++ b/latest/newtmgr/install_mac/index.html @@ -0,0 +1,544 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + + <!-- This is broken by doc revisioning. + <link rel="canonical" href="http://mynewt.apache.org/newtmgr/install_mac/"> --> + <link rel="shortcut icon" href="../../img/favicon.ico"> + + <title>Install Newtmgr On Mac OS - Apache Mynewt</title> + + <link href="../../css/bootstrap-3.0.3.min.css" rel="stylesheet"> + <link rel="stylesheet" href="../../css/highlight.css"> + <link href="../../css/base.css" rel="stylesheet"> + <link href="../../css/custom.css" rel="stylesheet"> + <link href="../../css/v2.css" rel="stylesheet"> + <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet"> + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> + <link href="../../extra.css" rel="stylesheet"> + + <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> + <!--[if lt IE 9]> + <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> + <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> + <![endif]--> + + + <script> + (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ + (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), + m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) + })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); + + ga('create', 'UA-72162311-1', 'auto'); + ga('send', 'pageview'); + </script> + + </head> + + + <body class="Install Newtmgr On Mac OS"> + + + <div class="container"> + <div class="row v2-main-banner"> + <a class="logo-cell" href="/"> + <img class="logo" src="/img/logo.png"> + </a> + <div class="tagline-cell"> + <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4> + </div> + <div class="news-cell"> + <div class="well"> + <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.0.0</a> released (March 22, 2017) + </div> + </div> + </div> +</div> + + + + + + + + +<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="150" role="navigation"> + <div class="container"> + <!-- Collapsed navigation --> + <div class="navbar-header"> + <!-- Expander button --> + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> + <span class="sr-only">Toggle navigation</span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + + </div> + + <!-- Expanded navigation --> + <div class="navbar-collapse collapse"> + <!-- Main navigation --> + <ul class="nav navbar-nav navbar-right"> + <li + class="" +> + <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a> + </li> + <li + class="important" +> + <a href="/quick-start/">Quick Start</a> + </li> + <li + class="" +> + <a href="/about/">About</a> + </li> + <li + class="" +> + <a href="/talks/">Talks</a> + </li> + <li + class="active" +> + <a href="/latest/os/introduction">Documentation</a> + </li> + <li + class="" +> + <a href="/download/">Download</a> + </li> + <li + class="" +> + <a href="/community/">Community</a> + </li> + <li + class="" +> + <a href="/events/">Events</a> + </li> + </ul> + + <!-- Search, Navigation and Repo links --> + <ul class="nav navbar-nav navbar-right"> + + </ul> + </div> + </div> +</nav> + + + + <div class="container"> + + <div class="row"> + <div class="col-md-3 v2-sidebar sidebar-container"><div id="docSidebar" class="hidden-print" role="complementary"> + <div class="top"> + <div role="search"> + <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get"> + <div class="form-group"> + <input type="text" name="q" class="form-control" placeholder="Search documentation" /> + </div> + </form> + </div> + </div> + <ul class="toc-nav"> + <li class="doc-version"> +<select class="form-control" onchange="if (this.value) window.location.href=this.value"> + + <option + value="/develop/os/introduction" + selected="selected" + > + Version: develop (latest) + </option> + + <option + value="/v0_9_0/os/introduction" + + > + Version: 0.9.0 + </option> + +</select> +</li> + + + + + + + + + + + + + + + + + + + + + + <li ><a href="../../os/introduction/">Mynewt Documentation</a> + + + <ul> + + + + + + + + <li ><a href="../../os/get_started/get_started/">Basic Setup</a> + + + </li> + + + + + + <li > + <a href="../../os/get_started/vocabulary/">Concepts</a> + </li> + + + + + + + + <li ><a href="../../os/tutorials/tutorials/">Tutorials</a> + + + </li> + + + + + + + + <li ><a href="../../os/os_user_guide/">OS User Guide</a> + + + </li> + + + + + + + + <li><a href=" + ../../network/ble/ble_intro/ +">BLE User Guide</a> + + + </li> + + + + + + + + <li ><a href="../../newt/newt_intro/">Newt Tool Guide</a> + + + </li> + + + + + + + + <li ><a href="../overview/">Newt Manager Guide</a> + + + <ul> + + + + + + + + <li><a href=" + ../command_list/newtmgr_config/ +">Command Guide</a> + + + </li> + + + + + + + + <li><a href=" + ./ +">Install</a> + + + <ul> + + + + <li class="active"> + <a href="./">Install Newtmgr On Mac OS</a> + </li> + + + + + + <li > + <a href="../install_linux/">Install Newtmgr On Linux</a> + </li> + + + + </ul> + + </li> + + + + </ul> + + </li> + + + + </ul> + + </li> + + + + + + + + <li><a href=" + ../../faq/go_env/ +">Appendix</a> + + + </li> + + + + </ul> +</div></div> + + <div class="col-md-9" role="main"> + <div class="doc-header"> + <div role="navigation" aria-label="breadcrumbs navigation"> + <ul class="wy-breadcrumbs pull-right"> + <li><a href="/latest/os/introduction">Docs</a></li> + + + + <li>» <a href="../overview/">Newt Manager Guide</a></li> + + + + <li>» Install</li> + + + + <li>» Install Newtmgr On Mac OS</li> + + + + </ul> +</div> + </div> + + <h2 id="installing-newtmgr-on-mac-os">Installing Newtmgr on Mac OS</h2> +<p>Newtmgr is supported on Mac OS X 64 bit platforms and has been tested on Mac OS 10.9 and higher.</p> +<p>This page shows you how to install the following versions of newtmgr:</p> +<ul> +<li>The latest stable release version (1.0.0)</li> +<li>The latest from the master branch (unstable)</li> +</ul> +<p><strong>Note:</strong> If you would like to contribute to the newtmgr tool, see <a href="../../faq/go_env">Setting Up Go Environment to Contribute to Newt and Newtmgr Tools</a>.</p> +<h3 id="adding-the-runtimecohomebrew-mynewt-tap">Adding the runtimeco/homebrew-mynewt Tap:</h3> +<p>You should have added the runtimeco/homebrew-mynewt tap when you installed the <em>newt</em> tool. Run the following commands if you have not done so:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$brew tap runtimeco/homebrew-mynewt +$brew update +</pre></div> + + +<p><br></p> +<h3 id="installing-the-latest-release-version-of-newtmgr">Installing the Latest Release Version of Newtmgr</h3> +<p>Install the latest stable release version (1.0.0) of newtmgr:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">brew install mynewt-newtmgr +==> Installing mynewt-newtmgr from runtimeco/mynewt +==> Downloading https://github.com/runtimeco/binary-releases/raw/master/mynewt-newt-tools_1.0.0/mynewt-newtmgr-1.0.0.mavericks.bottle.tar.gz +==> Downloading from https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.0.0/mynewt-newtmgr-1.0.0.maveric +######################################################################## 100.0% +==> Pouring mynewt-newtmgr-1.0.0.mavericks.bottle.tar.gz +ðº /usr/local/Cellar/mynewt-newtmgr/1.0.0: 3 files, 15.2MB +</pre></div> + + +<p><br> +<strong>Note:</strong> This installs the newtmgr 1.0.0 binary that has been tested on Mac OS 10.9 and higher. If you are running an earlier version of Mac OS, the installation will install the latest version of Go and compile newtmgr locally.</p> +<p><br> +Check that you are using the installed version of newtmgr:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$which newtmgr +/usr/local/bin/newtmgr +ls -l /usr/local/bin/newtmgr +lrwxr-xr-x 1 user staff 42 Apr 15 09:14 /usr/local/bin/newtmgr -> ../Cellar/mynewt-newtmgr/1.0.0/bin/newtmgr +</pre></div> + + +<p><strong>Note:</strong> If you previously built newtmgr from source and the output of <code>which newtmgr</code> shows "$GOPATH/bin/newtmgr", you will need to move "$GOPATH/bin" after "/usr/local/bin" in your $PATH.</p> +<p><br> +Get information about newtmgr:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$newtmgr help +Newtmgr helps you manage remote devices running the Mynewt OS + +Usage: + newtmgr [flags] + newtmgr [command] + +Available Commands: + config Read or write a config value on a device + conn Manage newtmgr connection profiles + crash Send a crash command to a device + datetime Manage datetime on a device + echo Send data to a device and display the echoed back data + fs Access files on a device + image Manage images on a device + log Manage logs on a device + mpstats Read memory pool statistics from a device + reset Send reset request to a device + run Run test procedures on a device + stat Read statistics from a device + taskstats Read task statistics from a device + +Flags: + -c, --conn string connection profile to use + -h, --help Help for newtmgr commands + -l, --loglevel string log level to use (default "info") + -t, --trace print all bytes transmitted and received + +Use "newtmgr [command] --help" for more information about a command. +</pre></div> + + +<p><br></p> +<h4 id="installing-newtmgr-from-the-master-branch">Installing Newtmgr from the Master Branch</h4> +<p>We recommend that you use the latest stable release version (1.0.0) of newtmgr. If you would like to use the master branch with the latest updates, you can install newtmgr from the HEAD of the master branch. </p> +<p><strong> Notes: </strong></p> +<ul> +<li>The master branch may be unstable.</li> +<li>This installation will install the latest version of Go on your computer, if it is not installed, and compile newtmgr locally. </li> +</ul> +<p><br> +If you already installed newtgmr, unlink the current version:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$brew unlink mynewt-newtmgr +</pre></div> + + +<p><br> +Install the latest unstable version of newtmgr from the master branch:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$brew install --HEAD mynewt-newtmgr +==> Installing mynewt-newtmgr from runtimeco/mynewt +==> Cloning https://github.com/apache/incubator-mynewt-newt.git +Cloning into '/Users/<user>/Library/Caches/Homebrew/mynewt-newtmgr--git'... +remote: Counting objects: 623, done. +remote: Compressing objects: 100% (501/501), done. +remote: Total 623 (delta 154), reused 323 (delta 84), pack-reused 0 +Receiving objects: 100% (623/623), 1.10 MiB | 0 bytes/s, done. +Resolving deltas: 100% (154/154), done. +==> Checking out branch master +==> go install +ðº /usr/local/Cellar/mynewt-newtmgr/HEAD-409f7d3: 3 files, 15.1MB, built in 14 seconds +</pre></div> + + +<p><br> +To switch back to the stable release version (1.0.0) of newtmgr, you can run:</p> +<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$brew switch mynewt-newtmgr 1.0.0 +Cleaning /usr/local/Cellar/mynewt-newtmgr/1.0.0 +Cleaning /usr/local/Cellar/mynewt-newtmgr/HEAD-409f7d3 +1 links created for /usr/local/Cellar/mynewt-newtmgr/1.0.0 +</pre></div> + + +<p><br></p> + + <div class="row"> + + + + +<ul class="nav nav-pills" style="margin-bottom: 10px"> + <li> + + <a href=../command_list/newtmgr_taskstats/> + <span class="fa fa-arrow-left"></span> + Previous: newtmgr taskstats + </a> + + </li> + <li class="pull-right"> + + <a href=../install_linux/> + Next: Install Newtmgr On Linux + <span class="fa fa-arrow-right"></span> + </a> + + </li> +</ul> + </div> + <footer class="row"> + <div class="col-xs-12"> + + <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> + + </div> + <div class="col-xs-12"> + <div class="logos"> + <img src="/img/asf_logo_wide_small.png" alt="Apache" title="Apache"> + <small class="footnote"> + MyNewt is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. + </small> + <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache Incubator"> + </div> + </div> +</footer> + </div> + </div> + + + </div> + + <script src="../../js/jquery-1.10.2.min.js"></script> + <script src="../../js/bootstrap-3.0.3.min.js"></script> + <script src="../../js/highlight.pack.js"></script> + <script src="../../js/base.js"></script> + <script src="../../js/custom.js"></script> + + </body> +</html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/installing/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/installing/index.html b/latest/newtmgr/installing/index.html deleted file mode 100644 index 812cd4a..0000000 --- a/latest/newtmgr/installing/index.html +++ /dev/null @@ -1,462 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - - - <!-- This is broken by doc revisioning. - <link rel="canonical" href="http://mynewt.apache.org/newtmgr/installing/"> --> - <link rel="shortcut icon" href="../../img/favicon.ico"> - - <title>Install - Apache Mynewt</title> - - <link href="../../css/bootstrap-3.0.3.min.css" rel="stylesheet"> - <link rel="stylesheet" href="../../css/highlight.css"> - <link href="../../css/base.css" rel="stylesheet"> - <link href="../../css/custom.css" rel="stylesheet"> - <link href="../../css/v2.css" rel="stylesheet"> - <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet"> - <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> - <link href="../../extra.css" rel="stylesheet"> - - <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> - <!--[if lt IE 9]> - <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> - <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> - <![endif]--> - - - <script> - (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ - (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), - m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) - })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); - - ga('create', 'UA-72162311-1', 'auto'); - ga('send', 'pageview'); - </script> - - </head> - - - <body class="Install"> - - - <div class="container"> - <div class="row v2-main-banner"> - <a class="logo-cell" href="/"> - <img class="logo" src="/img/logo.png"> - </a> - <div class="tagline-cell"> - <h4 class="tagline">An OS to build, deploy and securely manage billions of devices</h4> - </div> - <div class="news-cell"> - <div class="well"> - <h4>Latest News:</h4> <a href="/download">Apache Mynewt 1.0.0</a> released (March 22, 2017) - </div> - </div> - </div> -</div> - - - - - - - - -<nav id="navbar" class="navbar navbar-inverse affix-top" data-spy="affix" data-offset-top="150" role="navigation"> - <div class="container"> - <!-- Collapsed navigation --> - <div class="navbar-header"> - <!-- Expander button --> - <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> - <span class="sr-only">Toggle navigation</span> - <span class="icon-bar"></span> - <span class="icon-bar"></span> - <span class="icon-bar"></span> - </button> - - </div> - - <!-- Expanded navigation --> - <div class="navbar-collapse collapse"> - <!-- Main navigation --> - <ul class="nav navbar-nav navbar-right"> - <li - class="" -> - <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a> - </li> - <li - class="important" -> - <a href="/quick-start/">Quick Start</a> - </li> - <li - class="" -> - <a href="/about/">About</a> - </li> - <li - class="" -> - <a href="/talks/">Talks</a> - </li> - <li - class="active" -> - <a href="/latest/os/introduction">Documentation</a> - </li> - <li - class="" -> - <a href="/download/">Download</a> - </li> - <li - class="" -> - <a href="/community/">Community</a> - </li> - <li - class="" -> - <a href="/events/">Events</a> - </li> - </ul> - - <!-- Search, Navigation and Repo links --> - <ul class="nav navbar-nav navbar-right"> - - </ul> - </div> - </div> -</nav> - - - - <div class="container"> - - <div class="row"> - <div class="col-md-3 v2-sidebar sidebar-container"><div id="docSidebar" class="hidden-print" role="complementary"> - <div class="top"> - <div role="search"> - <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get"> - <div class="form-group"> - <input type="text" name="q" class="form-control" placeholder="Search documentation" /> - </div> - </form> - </div> - </div> - <ul class="toc-nav"> - <li class="doc-version"> -<select class="form-control" onchange="if (this.value) window.location.href=this.value"> - - <option - value="/develop/os/introduction" - selected="selected" - > - Version: develop (latest) - </option> - - <option - value="/v0_9_0/os/introduction" - - > - Version: 0.9.0 - </option> - -</select> -</li> - - - - - - - - - - - - - - - - - - - - - - <li ><a href="../../os/introduction/">Mynewt Documentation</a> - - - <ul> - - - - - - - - <li ><a href="../../os/get_started/get_started/">Basic Setup</a> - - - </li> - - - - - - <li > - <a href="../../os/get_started/vocabulary/">Concepts</a> - </li> - - - - - - - - <li ><a href="../../os/tutorials/tutorials/">Tutorials</a> - - - </li> - - - - - - - - <li ><a href="../../os/os_user_guide/">OS User Guide</a> - - - </li> - - - - - - - - <li><a href=" - ../../network/ble/ble_intro/ -">BLE User Guide</a> - - - </li> - - - - - - - - <li ><a href="../../newt/newt_intro/">Newt Tool Guide</a> - - - </li> - - - - - - - - <li ><a href="../overview/">Newt Manager Guide</a> - - - <ul> - - - - - - - - <li><a href=" - ../command_list/newtmgr_config/ -">Command Guide</a> - - - </li> - - - - - - <li class="active"> - <a href="./">Install</a> - </li> - - - - </ul> - - </li> - - - - </ul> - - </li> - - - - - - - - <li><a href=" - ../../faq/how_to_edit_docs/ -">Appendix</a> - - - </li> - - - - </ul> -</div></div> - - <div class="col-md-9" role="main"> - <div class="doc-header"> - <div role="navigation" aria-label="breadcrumbs navigation"> - <ul class="wy-breadcrumbs pull-right"> - <li><a href="/latest/os/introduction">Docs</a></li> - - - - <li>» <a href="../../os/introduction/">Mynewt Documentation</a></li> - - - - <li>» <a href="../overview/">Newt Manager Guide</a></li> - - - - <li>» Install</li> - - - - </ul> -</div> - </div> - - <h1 id="installing-newtmgr">Installing Newtmgr</h1> -<p>This page shows you how to install newtmgr from source code.</p> -<h3 id="install-go-golang">Install Go (golang)</h3> -<p>If you have not already done so, install Go for your platform. </p> -<p>The easiest way on a MAC is to use <code>brew</code>. </p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">brew install go -==> Downloading https://homebrew.bintray.com/bottles/go-1.5.3.mavericks.bottle.t -... -==> Summary -ðº /usr/local/Cellar/go/1.5.3: 5,336 files, 259.6M -</pre></div> - - -<p><br></p> -<p>Alternatively, you can download binaries from -<a href="https://golang.org/doc/install">the golang.org site</a> -To test your Go implementation, you can query Go for its version information</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ go version -go version go1.5.3 darwin/amd64 -</pre></div> - - -<p><br></p> -<p>To use go, you must set a <code>$GOPATH</code> variable in your environment. This tells -go where to put all the packages it downloads, builds and runs.</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ mkdir $HOME/dev -$ export GOPATH=$HOME/dev/Go -</pre></div> - - -<p><br></p> -<p>Its best to add this to your <code>.profile</code> so its set automatically for your -environment. </p> -<p><br></p> -<h3 id="download-the-newtmgr-source">Download the newtmgr source</h3> -<p>You will first download the source code for newt.</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> go get mynewt.apache.org/newt/... - (wait a few minutes please, this sits without any indications of working) -</pre></div> - - -<p><br></p> -<h3 id="building-newtmgr">Building newtmgr</h3> -<p>Change into the directory where the newmgr tool was downloaded and -install the newtmgr tool</p> -<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> cd $GOPATH/src/mynewt.apache.org/newt/newtmgr - go install - $ ls $GOPATH/bin - ... newtmgr ... -</pre></div> - - -<p><br></p> -<p><strong>Note:</strong> If the <code>go install</code> command results in errors indicating some package -cannot be found, do a <code>go get</code> to download all the third-party files needed -from github.com and then run <code>go install</code> again. </p> -<h3 id="add-to-your-path">Add to your Path</h3> -<p>Add your <code>$GOPATH/bin</code> directory to your path.</p> - - <div class="row"> - - - - -<ul class="nav nav-pills" style="margin-bottom: 10px"> - <li> - - <a href=../command_list/newtmgr_taskstats/> - <span class="fa fa-arrow-left"></span> - Previous: newtmgr taskstats - </a> - - </li> - <li class="pull-right"> - - <a href=../../faq/how_to_edit_docs/> - Next: Edit Docs - <span class="fa fa-arrow-right"></span> - </a> - - </li> -</ul> - </div> - <footer class="row"> - <div class="col-xs-12"> - - <p class="copyright">Apache Mynewt (incubating) is available under Apache License, version 2.0.</p> - - </div> - <div class="col-xs-12"> - <div class="logos"> - <img src="/img/asf_logo_wide_small.png" alt="Apache" title="Apache"> - <small class="footnote"> - MyNewt is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. - </small> - <img src="/img/egg-logo2.png" alt="Apache Incubator" title="Apache Incubator"> - </div> - </div> -</footer> - </div> - </div> - - - </div> - - <script src="../../js/jquery-1.10.2.min.js"></script> - <script src="../../js/bootstrap-3.0.3.min.js"></script> - <script src="../../js/highlight.pack.js"></script> - <script src="../../js/base.js"></script> - <script src="../../js/custom.js"></script> - - </body> -</html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/newtmgr/overview/index.html ---------------------------------------------------------------------- diff --git a/latest/newtmgr/overview/index.html b/latest/newtmgr/overview/index.html index 196c942..f622d9e 100644 --- a/latest/newtmgr/overview/index.html +++ b/latest/newtmgr/overview/index.html @@ -289,8 +289,13 @@ - <li > - <a href="../installing/">Install</a> + + + <li><a href=" + ../install_mac/ +">Install</a> + + </li> @@ -312,7 +317,7 @@ <li><a href=" - ../../faq/how_to_edit_docs/ + ../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/callout/callout/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/callout/callout/index.html b/latest/os/core_os/callout/callout/index.html index 6056e59..42bbecd 100644 --- a/latest/os/core_os/callout/callout/index.html +++ b/latest/os/core_os/callout/callout/index.html @@ -666,7 +666,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/callout/os_callout_func_init/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/callout/os_callout_func_init/index.html b/latest/os/core_os/callout/os_callout_func_init/index.html index 91ece56..fb610a1 100644 --- a/latest/os/core_os/callout/os_callout_func_init/index.html +++ b/latest/os/core_os/callout/os_callout_func_init/index.html @@ -710,7 +710,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/callout/os_callout_init/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/callout/os_callout_init/index.html b/latest/os/core_os/callout/os_callout_init/index.html index 46775b9..e816627 100644 --- a/latest/os/core_os/callout/os_callout_init/index.html +++ b/latest/os/core_os/callout/os_callout_init/index.html @@ -710,7 +710,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/callout/os_callout_queued/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/callout/os_callout_queued/index.html b/latest/os/core_os/callout/os_callout_queued/index.html index f91810a..0abe68c 100644 --- a/latest/os/core_os/callout/os_callout_queued/index.html +++ b/latest/os/core_os/callout/os_callout_queued/index.html @@ -710,7 +710,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/callout/os_callout_reset/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/callout/os_callout_reset/index.html b/latest/os/core_os/callout/os_callout_reset/index.html index 85b0db5..308ae4d 100644 --- a/latest/os/core_os/callout/os_callout_reset/index.html +++ b/latest/os/core_os/callout/os_callout_reset/index.html @@ -710,7 +710,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/callout/os_callout_stop/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/callout/os_callout_stop/index.html b/latest/os/core_os/callout/os_callout_stop/index.html index db2b01d..6e707f8 100644 --- a/latest/os/core_os/callout/os_callout_stop/index.html +++ b/latest/os/core_os/callout/os_callout_stop/index.html @@ -710,7 +710,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/context_switch/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/context_switch/index.html b/latest/os/core_os/context_switch/context_switch/index.html index 77efa79..aab2f5c 100644 --- a/latest/os/core_os/context_switch/context_switch/index.html +++ b/latest/os/core_os/context_switch/context_switch/index.html @@ -666,7 +666,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_arch_ctx_sw/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_arch_ctx_sw/index.html b/latest/os/core_os/context_switch/os_arch_ctx_sw/index.html index c1f845c..9bb7509 100644 --- a/latest/os/core_os/context_switch/os_arch_ctx_sw/index.html +++ b/latest/os/core_os/context_switch/os_arch_ctx_sw/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched/index.html b/latest/os/core_os/context_switch/os_sched/index.html index 32ca55c..d2f269d 100644 --- a/latest/os/core_os/context_switch/os_sched/index.html +++ b/latest/os/core_os/context_switch/os_sched/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html b/latest/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html index 1f8cbee..61239f3 100644 --- a/latest/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html +++ b/latest/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched_get_current_task/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched_get_current_task/index.html b/latest/os/core_os/context_switch/os_sched_get_current_task/index.html index 644f6da..06b1756 100644 --- a/latest/os/core_os/context_switch/os_sched_get_current_task/index.html +++ b/latest/os/core_os/context_switch/os_sched_get_current_task/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched_insert/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched_insert/index.html b/latest/os/core_os/context_switch/os_sched_insert/index.html index fbc3b87..b36b80e 100644 --- a/latest/os/core_os/context_switch/os_sched_insert/index.html +++ b/latest/os/core_os/context_switch/os_sched_insert/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched_next_task/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched_next_task/index.html b/latest/os/core_os/context_switch/os_sched_next_task/index.html index 09b9164..3ffdca4 100644 --- a/latest/os/core_os/context_switch/os_sched_next_task/index.html +++ b/latest/os/core_os/context_switch/os_sched_next_task/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched_os_timer_exp/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched_os_timer_exp/index.html b/latest/os/core_os/context_switch/os_sched_os_timer_exp/index.html index 5dbaeb2..7173917 100644 --- a/latest/os/core_os/context_switch/os_sched_os_timer_exp/index.html +++ b/latest/os/core_os/context_switch/os_sched_os_timer_exp/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched_remove/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched_remove/index.html b/latest/os/core_os/context_switch/os_sched_remove/index.html index 935cc11..77acecc 100644 --- a/latest/os/core_os/context_switch/os_sched_remove/index.html +++ b/latest/os/core_os/context_switch/os_sched_remove/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched_resort/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched_resort/index.html b/latest/os/core_os/context_switch/os_sched_resort/index.html index 066b764..f7e9e06 100644 --- a/latest/os/core_os/context_switch/os_sched_resort/index.html +++ b/latest/os/core_os/context_switch/os_sched_resort/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched_set_current_task/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched_set_current_task/index.html b/latest/os/core_os/context_switch/os_sched_set_current_task/index.html index 600909e..ddb7c9f 100644 --- a/latest/os/core_os/context_switch/os_sched_set_current_task/index.html +++ b/latest/os/core_os/context_switch/os_sched_set_current_task/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched_sleep/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched_sleep/index.html b/latest/os/core_os/context_switch/os_sched_sleep/index.html index f25e21e..0e6be74 100644 --- a/latest/os/core_os/context_switch/os_sched_sleep/index.html +++ b/latest/os/core_os/context_switch/os_sched_sleep/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/context_switch/os_sched_wakeup/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/context_switch/os_sched_wakeup/index.html b/latest/os/core_os/context_switch/os_sched_wakeup/index.html index b0d6da6..0970c91 100644 --- a/latest/os/core_os/context_switch/os_sched_wakeup/index.html +++ b/latest/os/core_os/context_switch/os_sched_wakeup/index.html @@ -766,7 +766,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/cputime/os_cputime/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/cputime/os_cputime/index.html b/latest/os/core_os/cputime/os_cputime/index.html index 555beca..37c3ffd 100644 --- a/latest/os/core_os/cputime/os_cputime/index.html +++ b/latest/os/core_os/cputime/os_cputime/index.html @@ -666,7 +666,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/cputime/os_cputime_delay_nsecs/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/cputime/os_cputime_delay_nsecs/index.html b/latest/os/core_os/cputime/os_cputime_delay_nsecs/index.html index e6151a0..301a8da 100644 --- a/latest/os/core_os/cputime/os_cputime_delay_nsecs/index.html +++ b/latest/os/core_os/cputime/os_cputime_delay_nsecs/index.html @@ -774,7 +774,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/cputime/os_cputime_delay_ticks/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/cputime/os_cputime_delay_ticks/index.html b/latest/os/core_os/cputime/os_cputime_delay_ticks/index.html index 6e1a49a..1aa573e 100644 --- a/latest/os/core_os/cputime/os_cputime_delay_ticks/index.html +++ b/latest/os/core_os/cputime/os_cputime_delay_ticks/index.html @@ -774,7 +774,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/cputime/os_cputime_delay_usecs/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/cputime/os_cputime_delay_usecs/index.html b/latest/os/core_os/cputime/os_cputime_delay_usecs/index.html index 0b69daa..844aa78 100644 --- a/latest/os/core_os/cputime/os_cputime_delay_usecs/index.html +++ b/latest/os/core_os/cputime/os_cputime_delay_usecs/index.html @@ -774,7 +774,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a> http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/cputime/os_cputime_get32/index.html ---------------------------------------------------------------------- diff --git a/latest/os/core_os/cputime/os_cputime_get32/index.html b/latest/os/core_os/cputime/os_cputime_get32/index.html index daea18c..053b549 100644 --- a/latest/os/core_os/cputime/os_cputime_get32/index.html +++ b/latest/os/core_os/cputime/os_cputime_get32/index.html @@ -774,7 +774,7 @@ <li><a href=" - ../../../../faq/how_to_edit_docs/ + ../../../../faq/go_env/ ">Appendix</a>
