You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ad...@apache.org on 2017/03/03 01:02:42 UTC

[5/7] incubator-mynewt-site git commit: Update newt command documentation, sysconfig overwrites, events, bsp list

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_build/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_build/index.html b/develop/newt/command_list/newt_build/index.html
index f658a93..148b740 100644
--- a/develop/newt/command_list/newt_build/index.html
+++ b/develop/newt/command_list/newt_build/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,27 +504,26 @@
                         </div>
                         
                             <h2 id="newt-build"><font color="#F2853F" style="font-size:24pt">newt build </font></h2>
-<p>Compiles, links, and builds one or more apps. </p>
+<p>Build one or more targets. </p>
 <h4 id="usage">Usage:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt build [flags] input1
-</pre></div>
-
-
-<p>where <code>input1</code> is the name of the target to build.</p>
-<h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for target
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt build  &lt;target-name&gt; [target_name ...] [flags] 
 </pre></div>
 
 
 <h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-    -o, --outfile string    Filename to tee log output to
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
+    -o, --outfile string    Filename to tee output to
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
+<h4 id="description">Description</h4>
+<p>Compiles, links, and builds an ELF binary for the target named &lt;target-name&gt;.  It builds an ELF file for the application specified by the <code>app</code> variable for the <code>target-name</code> target. The image can be loaded and run on the hardware specified by the <code>bsp</code> variable for the target. The command creates the 'bin/' directory under the project's base directory (that the <code>newt new</code> command created) and stores the executable in the 'bin/targets/&lt;target-name&gt;/app/apps/&lt;app-name&gt;' directory.</p>
+<p>You can specify a list of target names, separated by a space, to build multiple targets. </p>
 <h4 id="examples">Examples</h4>
 <table>
 <thead>
@@ -528,19 +535,14 @@
 </thead>
 <tbody>
 <tr>
-<td>build</td>
-<td>newt build <br> <code>input1</code></td>
-<td>Builds the source code into an image that can be loaded on the hardware (<code>bsp</code>) associated with the target named <code>input1</code> to run the application enabled by the <code>app</code> setting associated with that target. It creates 'bin/' directory and 'bin/<input1>/apps/<app>' subdirectory inside the base directory for the app, compiles and generates binaries and executables, and places them in that subdirectory.</td>
-</tr>
-<tr>
 <td></td>
 <td>newt build <br> my_blinky_sim</td>
-<td>For example, if <code>app</code> was set to <code>apps/blinky</code> for the target "my_blinky_sim", you will find the generated .elf, .a, and .lst files in bin/my_blinky_sim/apps/blinky directory created under the base directory for the app created using <code>newt new</code> at the start of the project.</td>
+<td>Builds an executable for the <code>my_blinky_sim</code> target. For example, if the <code>my_blinky_sim</code> target has <code>app</code> set to <code>apps/blinky</code>, you will find the generated .elf, .a, and .lst files in the 'bin/targets/my_blinky_sim/app/apps/blinky' directory.</td>
 </tr>
 <tr>
-<td>build</td>
-<td>newt build my_blinky_sim myble</td>
-<td>builds the apps defined for both the targets "my_blinky_sim" and "myble".</td>
+<td></td>
+<td>newt build <br> my_blinky_sim myble</td>
+<td>Builds the images for the applications defined by the <code>my_blinky_sim</code> and <code>myble</code> targets.</td>
 </tr>
 </tbody>
 </table>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_clean/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_clean/index.html b/develop/newt/command_list/newt_clean/index.html
index 7dad2dd..58f9763 100644
--- a/develop/newt/command_list/newt_clean/index.html
+++ b/develop/newt/command_list/newt_clean/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,55 +504,49 @@
                         </div>
                         
                             <h2 id="newt-clean"><font color="#F2853F" style="font-size:24pt">newt clean </font></h2>
-<p>Deletes application build artifacts for a specified target</p>
+<p>Delete build artifacts for one or more targets. </p>
 <h4 id="usage">Usage:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt clean [flags] input1
-</pre></div>
-
-
-<h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for target
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt clean &lt;target-name&gt; [target-name...] | all [flags]
 </pre></div>
 
 
 <h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-    -o, --outfile string    Filename to tee log output to
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
+    -o, --outfile string    Filename to tee output to
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
 <h4 id="description">Description</h4>
+<p>Deletes all the build artifacts generated for  the <code>target-name</code> target. It does not delete the target definition.  You can specify a list of targets, separated by a space, to delete the artifacts for multiple targets, or specify <code>all</code> to delete the artifacts for all targets.</p>
+<h4 id="examples">Examples</h4>
 <table>
 <thead>
 <tr>
 <th>Sub-command</th>
+<th>Usage</th>
 <th>Explanation</th>
 </tr>
 </thead>
 <tbody>
 <tr>
-<td>clean</td>
-<td>Deletes all the build artifacts generated for target specified by <code>input1</code>. It does not delete the target definition.</td>
+<td></td>
+<td>newt clean myble</td>
+<td>Deletes the 'bin/targets/myble' directory where all the build artifacts generated from the <code>myble</code> target build are stored.</td>
 </tr>
-</tbody>
-</table>
-<h4 id="examples">Examples</h4>
-<table>
-<thead>
 <tr>
-<th>Sub-command</th>
-<th>Usage</th>
-<th>Explanation</th>
+<td></td>
+<td>newt clean my_blinky_sim myble</td>
+<td>Deletes the 'bin/targets/my_blinky_sim' and the 'bin/targets/myble' directories where all the artifacts generated from the <code>my_blinky_sim</code> and <code>myble</code> target builds are stored.</td>
 </tr>
-</thead>
-<tbody>
 <tr>
-<td>clean</td>
-<td>newt clean myble2</td>
-<td>Removes all the files generated while building the target <code>myble2</code> and placed in the <code>bin/myble2</code> directory created during the build process.</td>
+<td></td>
+<td>newt clean all</td>
+<td>Removes the artifacts for all target builds. Deletes the top level 'bin' directory.</td>
 </tr>
 </tbody>
 </table>
@@ -565,8 +567,8 @@
     </li>
     <li class="pull-right">
     
-    <a href=../newt_complete/>
-        Next: newt complete
+    <a href=../newt_create_image/>
+        Next: newt create-image
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_complete/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_complete/index.html b/develop/newt/command_list/newt_complete/index.html
deleted file mode 100644
index b895444..0000000
--- a/develop/newt/command_list/newt_complete/index.html
+++ /dev/null
@@ -1,576 +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/newt/command_list/newt_complete/"> -->
-        <link rel="shortcut icon" href="../../../img/favicon.ico">
-
-	    <title>newt complete - 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="newt complete">
-
-
-        <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-b2</a> released (Feb 15, 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_intro/">Newt Tool Guide</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-    <li >
-      <a href="../../newt_operation/">Newt Theory of Ops</a>
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../newt_ops/">Command Guide</a>
-  
-  
-    <ul>
-          
-              
-          
-              
-                
-    <li >
-      <a href="../newt_build/">newt build</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_clean/">newt clean</a>
-    </li>
-
-              
-          
-              
-                
-    <li class="active">
-      <a href="./">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_create_image/">newt create-image</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_debug/">newt debug</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_help/">newt help</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_info/">newt info</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_install/">newt install</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_load/">newt load</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_mfg/">newt mfg</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_new/">newt new</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_run/">newt run</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_size/">newt size</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_target/">newt target</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_test/">newt test</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_upgrade/">newt upgrade</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_vals/">newt vals</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
-      <a href="../newt_version/">newt version</a>
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-    </ul>
-  
-    </li>
-
-              
-          
-              
-                
-  
-  
-    <li ><a href="../../../newtmgr/overview/">Newt Manager Guide</a>
-  
-  
-    </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="/develop/os/introduction">Docs</a></li>
-    
-    
-        
-          <li>&raquo; <a href="../../newt_intro/">Newt Tool Guide</a></li>
-        
-      
-        
-          <li>&raquo; <a href="../../newt_ops/">Command Guide</a></li>
-        
-      
-      
-        <li>&raquo; newt complete</li>
-      
-    
-    
-  </ul>
-</div>
-                        </div>
-                        
-                            <h2 id="newt-complete"><font color="#F2853F" style="font-size:24pt">newt complete </font></h2>
-<p>Performs bash autocompletion using tab. It is not intended to be called directly from the command line.</p>
-<h4 id="install-bash-autocompletion">Install bash autocompletion</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ brew install bash-completion
-    Updating Homebrew...
-    &lt;snip&gt;
-    Bash completion has been installed to:
-      /usr/local/etc/bash_completion.d
-    ==&gt; Summary
-    \U0001f37a  /usr/local/Cellar/bash-completion/1.3_1: 189 files, 607.8K
-</pre></div>
-
-
-<h4 id="enable-autocompletion-for-newt">Enable autocompletion for newt</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ complete -C &quot;newt complete&quot; newt
-</pre></div>
-
-
-<h4 id="usage">Usage</h4>
-<p>Hit tab and see possible completion options or completed command.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    $ newt target s
-    set   show  
-    $ newt target show
-</pre></div>
-                        
-                        <div class="row">
-                            
-
-
-
-<ul class="nav nav-pills" style="margin-bottom: 10px">
-    <li>
-    
-    <a href=../newt_clean/>
-        <span class="fa fa-arrow-left"></span>
-        Previous: newt clean
-    </a>
-    
-    </li>
-    <li class="pull-right">
-    
-    <a href=../newt_create_image/>
-        Next: newt create-image
-        <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/555f6f65/develop/newt/command_list/newt_create_image/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_create_image/index.html b/develop/newt/command_list/newt_create_image/index.html
index e3df439..8627af4 100644
--- a/develop/newt/command_list/newt_create_image/index.html
+++ b/develop/newt/command_list/newt_create_image/index.html
@@ -300,14 +300,6 @@
           
               
                 
-    <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
     <li class="active">
       <a href="./">newt create-image</a>
     </li>
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,41 +504,26 @@
                         </div>
                         
                             <h2 id="newt-create-image"><font color="#F2853F" style="font-size:24pt">newt create-image </font></h2>
-<p>Creates a signed image by adding image header to created binary file for specified target. Version number in the header is set to be <version> </p>
+<p>Create and sign an image by adding an image header to the binary file created for a target. Version number in the header is set to &lt;version&gt;. To sign an image provide a .pem file for the signing-key and an optional key-id.</p>
 <h4 id="usage">Usage:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt create-image &lt;target-name&gt; &lt;version&gt; [flags]
-</pre></div>
-
-
-<h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for target
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt create-image &lt;target-name&gt; &lt;version&gt; [signing-key [key-id]][flags]
 </pre></div>
 
 
 <h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-    -o, --outfile string    Filename to tee log output to
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
+    -o, --outfile string    Filename to tee output to
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
 <h4 id="description">Description</h4>
-<table>
-<thead>
-<tr>
-<th>Sub-command</th>
-<th>Explanation</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>create-image</td>
-<td>Signs and adds image header to the created binary file for target named <code>&lt;target-name&gt;</code> and given the version specified as <code>&lt;version&gt;</code>. The application image generated is <code>&lt;app-name&gt;.img</code> where the app-name is the same as the app specified in the target definition. The generated application image can be found in <code>/bin/&lt;target-name&gt;/apps/&lt;app-name&gt;/</code>. <br> <br> A build manifest file <code>manifest.json</code> is also generated in the same directory. This build manifest contains information such as build time, version, image name, a hash to identify the image, packages actually used to create the build, and the target for which the image is built.</td>
-</tr>
-</tbody>
-</table>
+<p>Adds an image header to the created binary file for the <code>target-name</code> target. The image version is set to <code>version</code>. It creates a <code>&lt;app-name&gt;.img</code> file for the image, where <code>app-name</code> is the value specified in the target <code>app</code> variable, and stores the file in the '/bin/targets/&lt;target-name&gt;/app/apps/&lt;app-name&gt;/' directory.  A <code>manifest.json</code> build manifest file is also generated in the same directory. This build manifest contains information such as build time, version, image name, a hash to identify the image, packages actually used to create the build, and the target for which the image is built.</p>
+<p>To sign an image,  provide a .pem file for the <code>signing-key</code> and an optional <code>key-id</code>. <code>key-id</code> must be a value between 0-255.</p>
 <h4 id="examples">Examples</h4>
 <table>
 <thead>
@@ -542,9 +535,14 @@
 </thead>
 <tbody>
 <tr>
-<td>create-image</td>
+<td></td>
 <td>newt create-image myble2 1.0.1.0</td>
-<td>Creates a signed image for target <code>myble2</code> and assigns it the version <code>1.0.1.0</code>. <br> <br> If the target is as follows: <br> targets/myble2 <br> app=@apache-mynewt-core/apps/bletiny <br> bsp=@apache-mynewt-core/hw/bsp/nrf52pdk <br> build_profile=optimized <br> cflags=-DSTATS_NAME_ENABLE <br> <br> then, the created image is <code>bin/myble2/apps/bletiny/bletiny.img</code> and the manifest is <code>bin/myble2/apps/bletiny/manifest.json</code></td>
+<td>Creates an image for target <code>myble2</code> and assigns it version <code>1.0.1.0</code>. <br> <br> For the following target definition: <br> targets/myble2 <br> app=@apache-mynewt-core/apps/bletiny <br> bsp=@apache-mynewt-core/hw/bsp/nrf52pdk <br> build_profile=optimized <br> cflags=-DSTATS_NAME_ENABLE <br> <br> the created image is 'bin/targets/myble2/app/apps/bletiny/bletiny.img' and the manifest is 'bin/targets/myble2/app/apps/bletiny/manifest.json'</td>
+</tr>
+<tr>
+<td></td>
+<td>newt create-image myble2 1.0.1.0 private.pem</td>
+<td>Creates an image for target <code>myble2</code> and assigns it the version <code>1.0.1.0</code>. Signs the image using  private key specified by the private.pem file.</td>
 </tr>
 </tbody>
 </table>
@@ -557,9 +555,9 @@
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../newt_complete/>
+    <a href=../newt_clean/>
         <span class="fa fa-arrow-left"></span>
-        Previous: newt complete
+        Previous: newt clean
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_debug/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_debug/index.html b/develop/newt/command_list/newt_debug/index.html
index 814df61..069f0a0 100644
--- a/develop/newt/command_list/newt_debug/index.html
+++ b/develop/newt/command_list/newt_debug/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,41 +504,31 @@
                         </div>
                         
                             <h2 id="newt-debug"><font color="#F2853F" style="font-size:24pt">newt debug </font></h2>
-<p>Opens debugger session for specified target. </p>
+<p>Open a debugger session to a target. </p>
 <h4 id="usage">Usage:</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt debug &lt;target-name&gt; [flag]
 </pre></div>
 
 
 <h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for target
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">      --extrajtagcmd string   Extra commands to send to JTAG software
+  -n, --noGDB                 Do not start GDB from command line
 </pre></div>
 
 
 <h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-    -o, --outfile string    Filename to tee log output to
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
+    -o, --outfile string    Filename to tee output to
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
 <h4 id="description">Description</h4>
-<table>
-<thead>
-<tr>
-<th>Sub-command</th>
-<th>Explanation</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>debug</td>
-<td>Opens the appropriate debugging session for the image built for the named target.</td>
-</tr>
-</tbody>
-</table>
+<p>Opens a debugger session to the image built for the &lt;target-name&gt; target.</p>
 <h4 id="examples">Examples</h4>
 <table>
 <thead>
@@ -542,9 +540,14 @@
 </thead>
 <tbody>
 <tr>
-<td>debug</td>
+<td></td>
 <td>newt debug myble2</td>
-<td>Opens J-Link connection and starts a GNU gdb session to debug bin/myble2/apps/bletiny/bletiny.elf when the target is as follows: <br> <br> targets/myble2 <br> app=@apache-mynewt-core/apps/bletiny <br> bsp=@apache-mynewt-core/hw/bsp/nrf52pdk <br> build_profile=optimized <br> cflags=-DSTATS_NAME_ENABLE</td>
+<td>Opens a J-Link connection and starts a GNU gdb session to debug bin/targets/myble2/app/apps/bletiny/bletiny.elf when the target is as follows: <br> <br> targets/myble2 <br> app=@apache-mynewt-core/apps/bletiny <br> bsp=@apache-mynewt-core/hw/bsp/nrf52pdk <br> build_profile=optimized <br> cflags=-DSTATS_NAME_ENABLE</td>
+</tr>
+<tr>
+<td></td>
+<td>newt debug myble2 -n</td>
+<td>Opens a J-Link connection bin/targets/myble2/app/apps/bletiny/bletiny.elf but do not start GDB on the command line.</td>
 </tr>
 </tbody>
 </table>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_help/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_help/index.html b/develop/newt/command_list/newt_help/index.html
index 5393bb0..aa0de6c 100644
--- a/develop/newt/command_list/newt_help/index.html
+++ b/develop/newt/command_list/newt_help/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,7 +504,7 @@
                         </div>
                         
                             <h2 id="newt-help"><font color="#F2853F" style="font-size:24pt">newt help </font></h2>
-<p>Displays the help text for the newt command line tool:</p>
+<p>Display the help text for the newt command line tool:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">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 
@@ -507,35 +515,40 @@ https://mynewt.apache.org/.
 
 
 <h4 id="usage">Usage:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt help [input1]
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt help [command]
 </pre></div>
 
 
-<h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for newt
+<h4 id="global-flags">Global Flags:</h4>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
     -o, --outfile string    Filename to tee output to
-    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
 <h4 id="available-commands">Available Commands:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    version      Display the Newt version number.
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    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
-    upgrade      Upgrade project dependencies
+    load         Load built target to board
+    mfg          Manufacturing flash image commands
     new          Create a new project
-    info         Show project info
+    pkg          Create and manage packages in the current workspace
+    run          build/create-image/download/debug &lt;target&gt;
+    size         Size of target components
+    sync         Synchronize project dependencies
     target       Command for manipulating targets
-    build        Builds one or more targets.
-    clean        Deletes build artifacts for one or more targets.
     test         Executes unit tests for one or more packages
-    load         Load built target to board
-    debug        Open debugger session to target
-    size         Size of target components
-    create-image Add image header to target binary
-    run          build/create-image/download/debug &lt;target&gt;
+    upgrade      Upgrade project dependencies
+    vals         Display valid values for the specified element type(s)
+    version      Display the Newt version number
 </pre></div>
 
 
@@ -550,12 +563,12 @@ https://mynewt.apache.org/.
 </thead>
 <tbody>
 <tr>
-<td>help</td>
+<td></td>
 <td>newt help target</td>
-<td>Displays the help text for the newt command 'target'</td>
+<td>Displays the help text for the newt <code>target</code> command</td>
 </tr>
 <tr>
-<td>help</td>
+<td></td>
 <td>newt help</td>
 <td>Displays the help text for newt tool</td>
 </tr>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_info/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_info/index.html b/develop/newt/command_list/newt_info/index.html
index aa64e1c..f7faba0 100644
--- a/develop/newt/command_list/newt_info/index.html
+++ b/develop/newt/command_list/newt_info/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,36 +504,25 @@
                         </div>
                         
                             <h2 id="newt-info"><font color="#F2853F" style="font-size:24pt">newt info </font></h2>
-<p>Shows information about the current project.</p>
+<p>Show information about the current project.</p>
 <h4 id="usage">Usage:</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt info [flags]
 </pre></div>
 
 
 <h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
     -o, --outfile string    Filename to tee output to
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
 <h4 id="description">Description</h4>
-<table>
-<thead>
-<tr>
-<th>Sub-command</th>
-<th>Explanation</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>info</td>
-<td>Displays the repositories in the current project (the local as well as all the external repositories fetched). Also displays the packages in the local repository.</td>
-</tr>
-</tbody>
-</table>
+<p>Displays the repositories in the current project (the local as well as all the external repositories fetched). It also displays the packages in the local repository.</p>
                         
                         <div class="row">
                             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_install/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_install/index.html b/develop/newt/command_list/newt_install/index.html
index 5dfed10..b708640 100644
--- a/develop/newt/command_list/newt_install/index.html
+++ b/develop/newt/command_list/newt_install/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,42 +504,31 @@
                         </div>
                         
                             <h2 id="newt-install"><font color="#F2853F" style="font-size:24pt">newt install </font></h2>
-<p>Install project dependencies. </p>
+<p>Install project dependencies.  </p>
 <h4 id="usage">Usage:</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt install [flags]
 </pre></div>
 
 
 <h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -f, --force   Force install of the repositories in project, regardless of what exists in repos directory
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -f, --force  Force install of the repositories in project, regardless of what exists in repos directory
 </pre></div>
 
 
 <h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for newt
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
     -o, --outfile string    Filename to tee output to
-    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
 <h4 id="description">Description</h4>
-<table>
-<thead>
-<tr>
-<th>Sub-command</th>
-<th>Explanation</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>install</td>
-<td>Downloads description of all the repositories specified in the project.yml file of the current project directory. Installs all the correct versions of all the packages dictated by the project dependencies. <br> <br> Always run the command from within the project directory (i.e. remember to <code>cd</code> into the app directory after creating a new app using <code>newt new</code>) before running <code>newt install</code>.</td>
-</tr>
-</tbody>
-</table>
+<p>This command downloads the description for all the repositories specified in the <code>project.yml</code> file for the current project, and installs the correct versions of all the packages specified by the project dependencies. </p>
+<p>You must run this command from within the current project directory. (Remember to <code>cd</code> into this project directory after you use <code>newt new</code> to create this project before you run <code>newt install</code>.)</p>
                         
                         <div class="row">
                             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_load/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_load/index.html b/develop/newt/command_list/newt_load/index.html
index 315e423..4250314 100644
--- a/develop/newt/command_list/newt_load/index.html
+++ b/develop/newt/command_list/newt_load/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,41 +504,30 @@
                         </div>
                         
                             <h2 id="newt-load"><font color="#F2853F" style="font-size:24pt">newt load </font></h2>
-<p>Load app image to specified target. </p>
+<p>Load application image onto the board for a target. </p>
 <h4 id="usage">Usage:</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt load &lt;target-name&gt; [flags]
 </pre></div>
 
 
 <h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for target
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    --extrajtagcmd string   Extra commands to send to JTAG software
 </pre></div>
 
 
-<h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
+<h3 id="global-flags">Global Flags:</h3>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
     -o, --outfile string    Filename to tee output to
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
 <h4 id="description">Description</h4>
-<table>
-<thead>
-<tr>
-<th>Sub-command</th>
-<th>Explanation</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>load</td>
-<td>Uses download scripts to automatically load, onto the connected board, the image built for the app defined in the target specified by <target-name>. <br> <br> If the wrong board is connected, or the target definition is wrong (i.e. the wrong values are given for bsp or app), the command will fail with error messages such as <code>Can not connect to J-Link via USB</code> or <code>Unspecified error -1</code>.</td>
-</tr>
-</tbody>
-</table>
+<p>Uses download scripts to automatically load, onto the connected board, the image built for the app defined by the <code>target-name</code> target If the wrong board is connected or the target definition is incorrect (i.e. the wrong values are given for bsp or app), the command will fail with error messages such as <code>Can not connect to J-Link via USB</code> or <code>Unspecified error -1</code>. </p>
                         
                         <div class="row">
                             

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_mfg/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_mfg/index.html b/develop/newt/command_list/newt_mfg/index.html
index 8533b7e..b93f89f 100644
--- a/develop/newt/command_list/newt_mfg/index.html
+++ b/develop/newt/command_list/newt_mfg/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,7 +504,7 @@
                         </div>
                         
                             <h2 id="newt-mfg"><font color="#F2853F" style="font-size:24pt">newt mfg </font></h2>
-<p>Provides commands to create, build, and upload manufacturing image. </p>
+<p>Commands to create, build, and upload manufacturing image. </p>
 <h4 id="usage">Usage:</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt mfg [flags]
     newt mfg [command]
@@ -505,22 +513,19 @@
 
 <h4 id="available-commands">Available Commands:</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    create      Create a manufacturing flash image
-    deploy      Builds and uploads a manufacturing image (build + load)
+    deploy      Build and upload a manufacturing image (build + load)
     load        Load a manufacturing flash image onto a device
 </pre></div>
 
 
-<h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for mfg
-</pre></div>
-
-
 <h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-    -o, --outfile string    Filename to tee log output to
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
+    -o, --outfile string    Filename to tee output to
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
@@ -535,7 +540,7 @@
 <tbody>
 <tr>
 <td>create</td>
-<td>A manufacturing image specifies 1) a boot loader target, and 2) one or more image targets. Assuming the manufacturing entity has been created and defined in the <code>mfgs/&lt;mfg image name&gt;/</code> package(see Examples below), this command collects the manufacturing related files in the newly created <code>bin/mfgs/&lt;mfg image name&gt;</code> directory. The collection includes manifests with the image build time, version, manufacturing package build time, image ID (or hash) etc. It is essentially a snapshot of the image data and metadata uploaded to the device flash at manufacturing time. Note that the command expects the targets and images to have already been built using <code>newt build</code> and <code>newt create-image</code> commands.</td>
+<td>A manufacturing image specifies 1) a boot loader target, and 2) one or more image targets. Assuming the manufacturing entity has been created and defined in the <code>mfgs/&lt;mfg image name&gt;/</code> package (see Examples below), this command collects the manufacturing related files in the newly created <code>bin/mfgs/&lt;mfg image name&gt;</code> directory. The collection includes manifests with the image build time, version, manufacturing package build time, image ID (or hash) etc. It is essentially a snapshot of the image data and metadata uploaded to the device flash at manufacturing time. Note that the command expects the targets and images to have already been built using <code>newt build</code> and <code>newt create-image</code> commands.</td>
 </tr>
 <tr>
 <td>deploy</td>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_new/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_new/index.html b/develop/newt/command_list/newt_new/index.html
index f261703..aa8eba3 100644
--- a/develop/newt/command_list/newt_new/index.html
+++ b/develop/newt/command_list/newt_new/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,27 +504,25 @@
                         </div>
                         
                             <h2 id="newt-new"><font color="#F2853F" style="font-size:24pt">newt new </font></h2>
-<p>Create a new application, specified by <app-name>, from a given skeleton. Currently, the default skeleton is the <a href="https://git-wip-us.apache.org/repos/asf/incubator-mynewt-blinky.git">blinky repository</a> in Apache Mynewt (or <a href="https://github.com/apache/incubator-mynewt-blinky">https://github.com/apache/incubator-mynewt-blinky</a> on its github mirror.)</p>
+<p>Create a new project from a skeleton. Currently, the default skeleton is the <a href="https://git-wip-us.apache.org/repos/asf/incubator-mynewt-blinky.git">blinky repository</a> in Apache Mynewt (or <a href="https://github.com/apache/incubator-mynewt-blinky">https://github.com/apache/incubator-mynewt-blinky</a> on its github mirror.)</p>
 <h4 id="usage">Usage:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt new [flags] &lt;app-name&gt;
-</pre></div>
-
-
-<h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for new
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt new &lt;project-name&gt; [flags]
 </pre></div>
 
 
 <h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for newt
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
     -o, --outfile string    Filename to tee output to
-    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
+<h3 id="description">Description</h3>
+<p>Creates a new project named <code>project-name</code> from the default skeleton <a href="https://git-wip-us.apache.org/repos/asf/incubator-mynewt-blinky.git">blinky repository</a> in Apache Mynewt (or <a href="https://github.com/apache/incubator-mynewt-blinky">https://github.com/apache/incubator-mynewt-blinky</a> on its github mirror.)</p>
 <h4 id="examples">Examples</h4>
 <table>
 <thead>
@@ -528,9 +534,9 @@
 </thead>
 <tbody>
 <tr>
-<td>newt new</td>
+<td></td>
 <td>newt new test_project</td>
-<td>Creates a new app named "test_project " using the default skeleton from the <code>apache/incubator-mynewt-blinky</code> repo.</td>
+<td>Creates a new project named <code>test_project</code> using the default skeleton from the <code>apache/incubator-mynewt-blinky</code> repository.</td>
 </tr>
 </tbody>
 </table>
@@ -551,8 +557,8 @@
     </li>
     <li class="pull-right">
     
-    <a href=../newt_run/>
-        Next: newt run
+    <a href=../newt_pkg/>
+        Next: newt pkg
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_pkg/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_pkg/index.html b/develop/newt/command_list/newt_pkg/index.html
new file mode 100644
index 0000000..0afbb60
--- /dev/null
+++ b/develop/newt/command_list/newt_pkg/index.html
@@ -0,0 +1,648 @@
+<!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/newt/command_list/newt_pkg/"> -->
+        <link rel="shortcut icon" href="../../../img/favicon.ico">
+
+	    <title>newt pkg - 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="newt pkg">
+
+
+        <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-b2</a> released (Feb 15, 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_intro/">Newt Tool Guide</a>
+  
+  
+    <ul>
+          
+              
+          
+              
+                
+    <li >
+      <a href="../../newt_operation/">Newt Theory of Ops</a>
+    </li>
+
+              
+          
+              
+                
+  
+  
+    <li ><a href="../../newt_ops/">Command Guide</a>
+  
+  
+    <ul>
+          
+              
+          
+              
+                
+    <li >
+      <a href="../newt_build/">newt build</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_clean/">newt clean</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_create_image/">newt create-image</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_debug/">newt debug</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_help/">newt help</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_info/">newt info</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_install/">newt install</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_load/">newt load</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_mfg/">newt mfg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_new/">newt new</a>
+    </li>
+
+              
+          
+              
+                
+    <li class="active">
+      <a href="./">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_run/">newt run</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_size/">newt size</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_target/">newt target</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_test/">newt test</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_upgrade/">newt upgrade</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_vals/">newt vals</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../newt_version/">newt version</a>
+    </li>
+
+              
+          
+    </ul>
+  
+    </li>
+
+              
+          
+    </ul>
+  
+    </li>
+
+              
+          
+              
+                
+  
+  
+    <li ><a href="../../../newtmgr/overview/">Newt Manager Guide</a>
+  
+  
+    </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="/develop/os/introduction">Docs</a></li>
+    
+    
+        
+          <li>&raquo; <a href="../../newt_intro/">Newt Tool Guide</a></li>
+        
+      
+        
+          <li>&raquo; <a href="../../newt_ops/">Command Guide</a></li>
+        
+      
+      
+        <li>&raquo; newt pkg</li>
+      
+    
+    
+  </ul>
+</div>
+                        </div>
+                        
+                            <h2 id="newt-pkg"><font color="#F2853F" style="font-size:24pt">newt pkg </font></h2>
+<p>Commands for creating and manipulating packages.</p>
+<h4 id="usage">Usage:</h4>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt pkg [command] [flags] 
+</pre></div>
+
+
+<h4 id="flags">Flags:</h4>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"> -t, --type string   Type of package to create: pkg, bsp, sdk. (default &quot;pkg&quot;)
+</pre></div>
+
+
+<h4 id="global-flags">Global Flags:</h4>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
+    -o, --outfile string    Filename to tee output to
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
+</pre></div>
+
+
+<h4 id="description">Description</h4>
+<p>The pkg command provides subcommands to create and manage packages. The subcommands take one or two <code>package-name</code> arguments.</p>
+<table>
+<thead>
+<tr>
+<th>Sub-command</th>
+<th>Explanation</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>copy</td>
+<td>The copy &lt;src-pkg&gt; &lt;dst-pkg&gt; command creates the new <code>dst-pkg</code> package by cloning the <code>src-pkg</code> package.</td>
+</tr>
+<tr>
+<td>move</td>
+<td>The move &lt;old-pkg&gt; &lt;new-pkg&gt; command moves the <code>old-pkg</code> package to the <code>new-pkg</code> package.</td>
+</tr>
+<tr>
+<td>new</td>
+<td>The new &lt;new-pkg&gt; command creates a new package named <code>new-pkg</code>, from a template, in the current directory. You can create a package of type <code>pkg</code>, <code>bsp</code>, or <code>sdk</code>. The default package type is <code>pkg</code>. You use the -t flag to specify a different package type.</td>
+</tr>
+<tr>
+<td>remove</td>
+<td>The remove &lt;my-pkg&gt;  command deletes the <code>my-pkg</code> package.</td>
+</tr>
+</tbody>
+</table>
+<h4 id="examples">Examples</h4>
+<table>
+<thead>
+<tr>
+<th>Sub-command</th>
+<th>Usage</th>
+<th>Explanation</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>copy</td>
+<td>newt pkg copy <br>apps/bletiny apps/new_bletiny</td>
+<td>Copies the <code>apps/bletiny</code> package to the <code>apps/new_bletiny</code>.</td>
+</tr>
+<tr>
+<td>move</td>
+<td>newt pkg move <br>apps/slinky apps/new_slinky</td>
+<td>Moves the <code>apps/slinky</code> package to the <code>apps/new_slinky</code> package.</td>
+</tr>
+<tr>
+<td>new</td>
+<td>newt pkg new apps/new_slinky</td>
+<td>Creates a package named <code>apps/new_slinky</code> of type <code>pkg</code> in the current directory.</td>
+</tr>
+<tr>
+<td>new</td>
+<td>newt pkg new hw/bsp/myboard -t bsp</td>
+<td>Creates a package named <code>hw/bsp/myboard</code> of type <code>bsp</code> in the current directory.</td>
+</tr>
+<tr>
+<td>remove</td>
+<td>newt pkg remove hw/bsp/myboard</td>
+<td>Removes the <code>hw/bsp/myboard</code> package.</td>
+</tr>
+</tbody>
+</table>
+                        
+                        <div class="row">
+                            
+
+
+
+<ul class="nav nav-pills" style="margin-bottom: 10px">
+    <li>
+    
+    <a href=../newt_new/>
+        <span class="fa fa-arrow-left"></span>
+        Previous: newt new
+    </a>
+    
+    </li>
+    <li class="pull-right">
+    
+    <a href=../newt_run/>
+        Next: newt run
+        <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/555f6f65/develop/newt/command_list/newt_run/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_run/index.html b/develop/newt/command_list/newt_run/index.html
index 14fb69a..c794c99 100644
--- a/develop/newt/command_list/newt_run/index.html
+++ b/develop/newt/command_list/newt_run/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -372,6 +364,14 @@
           
               
                 
+    <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
     <li class="active">
       <a href="./">newt run</a>
     </li>
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,42 +504,32 @@
                         </div>
                         
                             <h2 id="newt-run"><font color="#F2853F" style="font-size:24pt">newt run </font></h2>
-<p>A single command to do four steps - build a target, create-image, load image on a board, and start a debug session with the image on board.</p>
-<p><strong>Note</strong>: If version number is omitted, create-image step is skipped</p>
+<p>A single command to do four steps - build a target, create-image, load image on a board, and start a debug session with the image on the board.</p>
+<p><strong>Note</strong>: If the version number is omitted, the create-image step is skipped.</p>
 <h4 id="usage">Usage:</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt run &lt;target-name&gt; [&lt;version&gt;][flags] 
 </pre></div>
 
 
 <h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for target
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">      --extrajtagcmd string   Extra commands to send to JTAG software
+  -n, --noGDB                 Do not start GDB from the command line
 </pre></div>
 
 
 <h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-    -o, --outfile string    Filename to tee log output to
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help              Help for newt commands
+    -j, --jobs int          Number of concurrent build jobs (default 8)
+    -l, --loglevel string   Log level (default &quot;WARN&quot;)
+    -o, --outfile string    Filename to tee output to
+    -q, --quiet             Be quiet; only display error output
+    -s, --silent            Be silent; don&#39;t output anything
+    -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
 <h4 id="description">Description</h4>
-<table>
-<thead>
-<tr>
-<th>Sub-command</th>
-<th>Explanation</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>run</td>
-<td>Same as running <code>build &lt;target&gt;</code>, <code>create-image &lt;target&gt; &lt;version&gt;</code>,  <code>load &lt;target&gt;</code>, and <code>debug &lt;target&gt;</code>.</td>
-</tr>
-</tbody>
-</table>
+<p>Same as running <code>build &lt;target-name&gt;</code>, <code>create-image &lt;target-name&gt; &lt;version&gt;</code>,  <code>load &lt;target-name&gt;</code>, and <code>debug &lt;target-name&gt;</code>.</p>
 <h4 id="examples">Examples</h4>
 <table>
 <thead>
@@ -543,14 +541,14 @@
 </thead>
 <tbody>
 <tr>
-<td>run</td>
+<td></td>
 <td>newt run blink_rigado</td>
-<td>First compiles and builds executable for running the app defined in the target <code>blink_rigado</code> on the board defined in the same target, then loads image onto the board, and finally opens an active GNU gdb debugging session to run the image.</td>
+<td>Compiles and builds the image for the <code>app</code> and the <code>bsp</code> defined for target <code>blink_rigado</code>, loads the image onto the board, and opens an active GNU gdb debugging session to run the image.</td>
 </tr>
 <tr>
-<td>run</td>
+<td></td>
 <td>newt run ble_rigado 0.1.0.0</td>
-<td>First compiles and builds executable for running the app defined in the target <code>ble_rigado</code> on the board defined in the same target, then signs and creates image with version number 0.1.0.0, loads the image onto the board, and finally opens an active GNU gdb debugging session to run the image. <br> <br> Note that if there is no bootloader available for a particular board/kit, a signed image creation step is not necessary.</td>
+<td>Compiles and builds the image for the <code>app</code> and the <code>bsp</code> defined for target <code>ble_rigado</code>, signs and creates the image with version number 0.1.0.0, loads the image onto the board, and opens an active GNU gdb debugging session to run the image. <br> <br> Note that if there is no bootloader available for a particular board/kit, a signed image creation step is not necessary.</td>
 </tr>
 </tbody>
 </table>
@@ -563,9 +561,9 @@
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../newt_new/>
+    <a href=../newt_pkg/>
         <span class="fa fa-arrow-left"></span>
-        Previous: newt new
+        Previous: newt pkg
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/555f6f65/develop/newt/command_list/newt_size/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_size/index.html b/develop/newt/command_list/newt_size/index.html
index f8fc2bb..a9e5d48 100644
--- a/develop/newt/command_list/newt_size/index.html
+++ b/develop/newt/command_list/newt_size/index.html
@@ -301,14 +301,6 @@
               
                 
     <li >
-      <a href="../newt_complete/">newt complete</a>
-    </li>
-
-              
-          
-              
-                
-    <li >
       <a href="../newt_create_image/">newt create-image</a>
     </li>
 
@@ -373,6 +365,14 @@
               
                 
     <li >
+      <a href="../newt_pkg/">newt pkg</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_run/">newt run</a>
     </li>
 
@@ -389,6 +389,14 @@
               
                 
     <li >
+      <a href="../newt_sync/">newt sync</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../newt_target/">newt target</a>
     </li>
 
@@ -496,26 +504,31 @@
                         </div>
                         
                             <h2 id="newt-size"><font color="#F2853F" style="font-size:24pt">newt size </font></h2>
-<p>Calculate the size of target components specified by <target-name></p>
+<p>Calculates the size of target components for a target.</p>
 <h4 id="usage">Usage:</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    newt size &lt;target-name&gt; [flags]
 </pre></div>
 
 
 <h4 id="flags">Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -h, --help=false: help for target
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -F, --flash   Print FLASH statistics
+    -R, --ram     Print RAM statistics
 </pre></div>
 
 
 <h4 id="global-flags">Global Flags:</h4>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">    -l, --loglevel=&quot;WARN&quot;: Log level, defaults to WARN.
-    -o, --outfile string    Filename to tee log output to
-    -q, --quiet=false: Be quiet; only display error output.
-    -s, --silent=false: Be silent; don&#39;t output anything.
-    -v, --verbose=false: Enable verbose output when executing commands.
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">  -h, --help              Help for newt commands
+  -j, --jobs int          Number of concurrent build jobs (default 8)
+  -l, --loglevel string   Log level (default &quot;WARN&quot;)
+  -o, --outfile string    Filename to tee output to
+  -q, --quiet             Be quiet; only display error output
+  -s, --silent            Be silent; don&#39;t output anything
+  -v, --verbose           Enable verbose output when executing commands
 </pre></div>
 
 
+<h4 id="description">Description</h4>
+<p>Displays the RAM and FLASH size of each component for the <code>target-name</code> target.  </p>
 <h4 id="examples">Examples</h4>
 <table>
 <thead>
@@ -527,13 +540,13 @@
 </thead>
 <tbody>
 <tr>
-<td>size</td>
+<td></td>
 <td>newt size blink_rigado</td>
-<td>Inspects and lists the RAM and Flash memory use by each component (object files and libraries) of the target.</td>
+<td>Inspects and lists the RAM and Flash memory that each component (object files and libraries) for the <code>blink_rigado</code> target.</td>
 </tr>
 </tbody>
 </table>
-<h4 id="example-output-for-newt-size-boot_olimex">Example output for <code>newt size boot_olimex</code>:</h4>
+<h4 id="example-output-for-newt-size-blink_rigado">Example output for <code>newt size blink_rigado</code>:</h4>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt size blink_rigado
   FLASH     RAM 
       9     223 *fill*
@@ -572,8 +585,8 @@ objsize
     </li>
     <li class="pull-right">
     
-    <a href=../newt_target/>
-        Next: newt target
+    <a href=../newt_sync/>
+        Next: newt sync
         <span class="fa fa-arrow-right"></span>
     </a>