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/04/18 19:50:23 UTC

[01/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Repository: incubator-mynewt-site
Updated Branches:
  refs/heads/asf-site 408994010 -> b3522a138


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/mkdocs/search_index.json
----------------------------------------------------------------------
diff --git a/mkdocs/search_index.json b/mkdocs/search_index.json
index 1d3a41c..ad542cc 100644
--- a/mkdocs/search_index.json
+++ b/mkdocs/search_index.json
@@ -151,51 +151,6 @@
             "title": "Quick Start"
         }, 
         {
-            "location": "/os/get_started/docker/", 
-            "text": "Everything You Need in a Docker Container\n\n\nDocker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.\n\n\nDocker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.\n\n\n\n\nInstall Docker\n\n\nInstall docker for your platform. \nMac OS X\n / \nWindows\n / \nLinux\n\n\nMac and Windows\n\n\nMac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support U
 SB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.\n\n\nMake sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.\n\n\nLinux\n\n\nThe docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.\n\n\n\n\nUse the newt wrapper script\n\n\nUse the newt wrapper script to invoke newt.  Create the following file, name it\n\nnewt\n, make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.\n\n\n#!/bin/bash\n\n\n\nif\n \n[\n \n$1\n \n=\n \ndebug\n \n]\n \n||\n \n[\n \n$1\n \n=\n \nrun\n \n]\n\n\nthen\n\n    \nti=\n-ti\n\n\nfi\n\n\ndocker run -e \nNEWT_US
 ER=\n$(\nid -u\n)\n -e \nNEWT_GROUP=\n$(\nid -g\n)\n -e \nNEWT_HOST=\n$(\nuname\n)\n \n$ti\n --rm --device\n=\n/dev/bus/usb --privileged -v \n$(pwd)\n:/workspace -w /workspace mynewt/newt:latest /newt \n$@\n\n\n\n\n\n\n\n\nNote 1:\n Remember to point to the correct subdirectory level when invoking \nnewt\n. For example, invoke it using \n../newt\n in the example below.\n\n\nuser@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj\n\nuser@~/dockertest/myproj$ ../newt version\n\nApache Newt (incubating) version: 0.8.0-b2\n\n\n\n\n\n\n\nNote 2:\n You can upgrade your container by running \ndocker pull mynewt/newt:latest\n when updates are made available.\n\n\n\n\nEnable USB2 Support for Mac or Windows\n\n\nIf you plan on loading your application on an actual device, do the steps below.\n\n\n\n\nInstall VirtualBox extension pack\n\n\nDocker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the \nVirtua
 lBox\n5.0.16 Oracle VM VirtualBox Extension\nPack\n\nand double click to install\n\n\n\n\nEnable USB2 and select your device\n\n\n\n\n\n\nThe \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:\n\n\n\n\nRun the command \ndocker-machine stop default\n in the terminal window or\n\n\nUse the VirtualBox UI. Right click on \ndefault\n -\n Close -\n Power Off\n\n\n\n\n\n\n\n\nEnable USB2 using the VirtualBox UI. Select the \"default\"\n  VM-\nSettings-\nPorts-\nUSB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.\n\n\n\n\n\n\n\n\n\n\nRestart the \"default\" VM. You have two options:\n\n\nRun \ndocker-machine start default\n in the terminal window or \n\n\nUse the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".\n\n\n\n\n\n\n\n\n\n\nNote 3\n: When working with ac
 tual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be able to see the board correctly. For example, you may see an error message like \nError: unable to find CMSIS-DAP device\n when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
-            "title": "Docker Container Option"
-        }, 
-        {
-            "location": "/os/get_started/docker/#everything-you-need-in-a-docker-container", 
-            "text": "Docker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.  Docker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.", 
-            "title": "Everything You Need in a Docker Container"
-        }, 
-        {
-            "location": "/os/get_started/docker/#install-docker", 
-            "text": "Install docker for your platform.  Mac OS X  /  Windows  /  Linux", 
-            "title": "Install Docker"
-        }, 
-        {
-            "location": "/os/get_started/docker/#mac-and-windows", 
-            "text": "Mac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support USB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.  Make sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.", 
-            "title": "Mac and Windows"
-        }, 
-        {
-            "location": "/os/get_started/docker/#linux", 
-            "text": "The docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.", 
-            "title": "Linux"
-        }, 
-        {
-            "location": "/os/get_started/docker/#use-the-newt-wrapper-script", 
-            "text": "Use the newt wrapper script to invoke newt.  Create the following file, name it newt , make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.  #!/bin/bash  if   [   $1   =   debug   ]   ||   [   $1   =   run   ]  then \n     ti= -ti  fi \n\ndocker run -e  NEWT_USER= $( id -u )  -e  NEWT_GROUP= $( id -g )  -e  NEWT_HOST= $( uname )   $ti  --rm --device = /dev/bus/usb --privileged -v  $(pwd) :/workspace -w /workspace mynewt/newt:latest /newt  $@    Note 1:  Remember to point to the correct subdirectory level when invoking  newt . For example, invoke it using  ../newt  in the example below.  user@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj user@~/dockertest/myproj$ ../newt version Apache Newt (incubating) version: 0.8.0-b2   Note 2:  You can upgrade your container by running  docker pull mynewt/newt:latest  when updates are
  made available.", 
-            "title": "Use the newt wrapper script"
-        }, 
-        {
-            "location": "/os/get_started/docker/#enable-usb2-support-for-mac-or-windows", 
-            "text": "If you plan on loading your application on an actual device, do the steps below.", 
-            "title": "Enable USB2 Support for Mac or Windows"
-        }, 
-        {
-            "location": "/os/get_started/docker/#install-virtualbox-extension-pack", 
-            "text": "Docker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the  VirtualBox\n5.0.16 Oracle VM VirtualBox Extension\nPack \nand double click to install", 
-            "title": "Install VirtualBox extension pack"
-        }, 
-        {
-            "location": "/os/get_started/docker/#enable-usb2-and-select-your-device", 
-            "text": "The \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:   Run the command  docker-machine stop default  in the terminal window or  Use the VirtualBox UI. Right click on  default  -  Close -  Power Off     Enable USB2 using the VirtualBox UI. Select the \"default\"\n  VM- Settings- Ports- USB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.      Restart the \"default\" VM. You have two options:  Run  docker-machine start default  in the terminal window or   Use the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".      Note 3 : When working with actual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be abl
 e to see the board correctly. For example, you may see an error message like  Error: unable to find CMSIS-DAP device  when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
-            "title": "Enable USB2 and select your device"
-        }, 
-        {
             "location": "/os/get_started/native_tools/", 
             "text": "Installing Native Mynewt Tools\n\n\nThis page shows how to install tools for native Mynewt targets (simulated targets on your laptop/computer) without using a Docker container. In other words, it allows you to run Mynewt OS as a native application on your Mac or Linux machine to simulate a target and use the Newt tool running natively on your machine to manage the simulated target. It also allows you to run the test suites for all packages not requiring HW support. You may choose to do this instead of using the build toolchain and Newt tool available in a Docker container.\n\n\nThis page provides guidance for MAC and Linux. See the relevant sections below.\n\n\n\n\nSet up toolchain for Mac\n\n\nInstall Brew\n\n\nIf you have not already installed Homebrew from the \n\nnewt\n tutorials pages\n, install it. \n\n\n\n\nInstall gcc/libc\n\n\nOS X ships with a C compiler called Clang.  To build applications for the Mynewt simulator with, a different compiler is used as
  default: gcc.\n\n\n$ brew install gcc\n...\n...\n==\n Summary\n\ud83c\udf7a  /usr/local/Cellar/gcc/5.2.0: 1353 files, 248M\n\n\n\n\n\n\n\nCheck the gcc version you have installed (either using brew or previously installed). The brew-installed version can be checked using \nbrew list gcc\n. The default compiler.yml configuration file in Mynewt expects version 5.x for Mac users, so if the installed version is 6.x and you wish to continue with this newer version, modify the \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n file to change the default \ngcc-5\n defined there to \ngcc-6\n. In other words, replace the lines shown highlighted below:\n\n\n# OS X.\n\ncompiler.path.cc.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5\n\n\ncompiler.path.as.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5 -x assembler-with-cpp\n\n\ncompiler.path.objdump.DARWIN.OVERWRITE: \ngobjdump\n\ncompiler.path.objsize.DARWIN.OVERWRITE: \nobjsize\n\ncompiler.path.objcopy.DARWIN.OVERWRITE: \ngobjc
 opy\n\n\n\n\n\n\nwith the following:\n\n\ncompiler.path.cc.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-6\n\ncompiler.path.as.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-6 -x assembler-with-cpp\u201d\n\n\n\n\n\n\n\nIn case you wish to use Clang, you can change your \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n to use Clang. Delete the gcc-5 DARWIN.OVERWRITE lines highlighted below.\n\n\n# OS X.\n\ncompiler.path.cc.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5\n\n\ncompiler.path.as.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5 -x assembler-with-cpp\n\n\ncompiler.path.objdump.DARWIN.OVERWRITE: \ngobjdump\n\ncompiler.path.objsize.DARWIN.OVERWRITE: \nobjsize\n\ncompiler.path.objcopy.DARWIN.OVERWRITE: \ngobjcopy\n\n\n\n\n\n\n\n\nNOTE:\n Both the newer gcc 6.x and Clang report a few warnings but they can be ignored.\n\n\n\n\nFURTHER NOTE:\n Mynewt developers mostly use gcc 5.x for sim builds; so it may take a little while to fix issues reported by the newer compiler. One option
  is to \ndisable warnings\n. To do that, remove the \n-Werror\n flag as an option for the compiler in the  \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n file as shown below. \n\n\ncompiler.flags.base: \n\n\n    -m32 -Wall -ggdb\n\n\n\n\n\nYou may alternatively choose to \nspecify the precise warnings to ignore\n depending on the error thrown by the compiler. For example, if you see a \n[-Werror=misleading-indentation]\n error while building the sim image, add \n-Wno-misleading-indentation]\n as a compiler flag in the same line from the \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n file.\n\n\ncompiler.flags.base: \n\n\n    -m32 -Wall -Werror -ggdb -Wno-misleading-indentation\n\n\n\n\n\nA third option is to simply \ndowngrade to gcc 5.x\n.\n\n\n\n\nInstall gdb\n\n\n$ brew install gdb\n...\n...\n==\n Summary\n\ud83c\udf7a  /usr/local/Cellar/gdb/7.10.1: XXX files,YYM\n\n\n\n\n\n\n\nNOTE:\n When running a program with gdb, y
 ou may need to sign your gdb\nexecutable.  \nThis page\n\nshows a recipe for gdb signing. Alternately you can skip this step and\ncontinue without the ability to debug your mynewt application on your PC.*\n\n\n\n\nSet up toolchain for Linux\n\n\nThe below procedure can be used to set up a Debian-based Linux system (e.g.,\nUbuntu).  If you are running a different Linux distribution, you will need to\nsubstitute invocations of \napt-get\n in the below steps with the package manager\nthat your distro uses.\n\n\n\n\nInstall gcc/libc that will produce 32-bit executables:\n\n\n$ sudo apt-get install gcc-multilib libc6-i386\n\n\n\n\n\n\n\nInstall gdb\n\n\n$ sudo apt-get install gdb\n\nReading package lists... Done\nBuilding dependency tree       \nReading state information... Done\nSuggested packages:\n  gdb-doc gdbserver\nThe following NEW packages will be installed:\n  gdb\n...\nProcessing triggers for man-db (2.6.7.1-1ubuntu1) ...\nSetting up gdb (7.7.1-0ubuntu5~14.04.2) ...\n\n\n\n\n\n
 \n\nAt this point you have installed all the necessary software to build and test code on a simluator running on your Mac or Linux. Proceed to the \nCreate Your First Project\n section.", 
             "title": "toc"
@@ -351,6 +306,51 @@
             "title": "Install OpenOCD"
         }, 
         {
+            "location": "/os/get_started/docker/", 
+            "text": "Everything You Need in a Docker Container\n\n\nDocker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.\n\n\nDocker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.\n\n\n\n\nInstall Docker\n\n\nInstall docker for your platform. \nMac OS X\n / \nWindows\n / \nLinux\n\n\nMac and Windows\n\n\nMac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support U
 SB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.\n\n\nMake sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.\n\n\nLinux\n\n\nThe docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.\n\n\n\n\nUse the newt wrapper script\n\n\nUse the newt wrapper script to invoke newt.  Create the following file, name it\n\nnewt\n, make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.\n\n\n#!/bin/bash\n\n\n\nif\n \n[\n \n$1\n \n=\n \ndebug\n \n]\n \n||\n \n[\n \n$1\n \n=\n \nrun\n \n]\n\n\nthen\n\n    \nti=\n-ti\n\n\nfi\n\n\ndocker run -e \nNEWT_US
 ER=\n$(\nid -u\n)\n -e \nNEWT_GROUP=\n$(\nid -g\n)\n -e \nNEWT_HOST=\n$(\nuname\n)\n \n$ti\n --rm --device\n=\n/dev/bus/usb --privileged -v \n$(pwd)\n:/workspace -w /workspace mynewt/newt:latest /newt \n$@\n\n\n\n\n\n\n\n\nNote 1:\n Remember to point to the correct subdirectory level when invoking \nnewt\n. For example, invoke it using \n../newt\n in the example below.\n\n\nuser@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj\n\nuser@~/dockertest/myproj$ ../newt version\n\nApache Newt (incubating) version: 0.8.0-b2\n\n\n\n\n\n\n\nNote 2:\n You can upgrade your container by running \ndocker pull mynewt/newt:latest\n when updates are made available.\n\n\n\n\nEnable USB2 Support for Mac or Windows\n\n\nIf you plan on loading your application on an actual device, do the steps below.\n\n\n\n\nInstall VirtualBox extension pack\n\n\nDocker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the \nVirtua
 lBox\n5.0.16 Oracle VM VirtualBox Extension\nPack\n\nand double click to install\n\n\n\n\nEnable USB2 and select your device\n\n\n\n\n\n\nThe \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:\n\n\n\n\nRun the command \ndocker-machine stop default\n in the terminal window or\n\n\nUse the VirtualBox UI. Right click on \ndefault\n -\n Close -\n Power Off\n\n\n\n\n\n\n\n\nEnable USB2 using the VirtualBox UI. Select the \"default\"\n  VM-\nSettings-\nPorts-\nUSB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.\n\n\n\n\n\n\n\n\n\n\nRestart the \"default\" VM. You have two options:\n\n\nRun \ndocker-machine start default\n in the terminal window or \n\n\nUse the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".\n\n\n\n\n\n\n\n\n\n\nNote 3\n: When working with ac
 tual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be able to see the board correctly. For example, you may see an error message like \nError: unable to find CMSIS-DAP device\n when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
+            "title": "Docker Container Option"
+        }, 
+        {
+            "location": "/os/get_started/docker/#everything-you-need-in-a-docker-container", 
+            "text": "Docker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.  Docker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.", 
+            "title": "Everything You Need in a Docker Container"
+        }, 
+        {
+            "location": "/os/get_started/docker/#install-docker", 
+            "text": "Install docker for your platform.  Mac OS X  /  Windows  /  Linux", 
+            "title": "Install Docker"
+        }, 
+        {
+            "location": "/os/get_started/docker/#mac-and-windows", 
+            "text": "Mac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support USB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.  Make sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.", 
+            "title": "Mac and Windows"
+        }, 
+        {
+            "location": "/os/get_started/docker/#linux", 
+            "text": "The docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.", 
+            "title": "Linux"
+        }, 
+        {
+            "location": "/os/get_started/docker/#use-the-newt-wrapper-script", 
+            "text": "Use the newt wrapper script to invoke newt.  Create the following file, name it newt , make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.  #!/bin/bash  if   [   $1   =   debug   ]   ||   [   $1   =   run   ]  then \n     ti= -ti  fi \n\ndocker run -e  NEWT_USER= $( id -u )  -e  NEWT_GROUP= $( id -g )  -e  NEWT_HOST= $( uname )   $ti  --rm --device = /dev/bus/usb --privileged -v  $(pwd) :/workspace -w /workspace mynewt/newt:latest /newt  $@    Note 1:  Remember to point to the correct subdirectory level when invoking  newt . For example, invoke it using  ../newt  in the example below.  user@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj user@~/dockertest/myproj$ ../newt version Apache Newt (incubating) version: 0.8.0-b2   Note 2:  You can upgrade your container by running  docker pull mynewt/newt:latest  when updates are
  made available.", 
+            "title": "Use the newt wrapper script"
+        }, 
+        {
+            "location": "/os/get_started/docker/#enable-usb2-support-for-mac-or-windows", 
+            "text": "If you plan on loading your application on an actual device, do the steps below.", 
+            "title": "Enable USB2 Support for Mac or Windows"
+        }, 
+        {
+            "location": "/os/get_started/docker/#install-virtualbox-extension-pack", 
+            "text": "Docker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the  VirtualBox\n5.0.16 Oracle VM VirtualBox Extension\nPack \nand double click to install", 
+            "title": "Install VirtualBox extension pack"
+        }, 
+        {
+            "location": "/os/get_started/docker/#enable-usb2-and-select-your-device", 
+            "text": "The \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:   Run the command  docker-machine stop default  in the terminal window or  Use the VirtualBox UI. Right click on  default  -  Close -  Power Off     Enable USB2 using the VirtualBox UI. Select the \"default\"\n  VM- Settings- Ports- USB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.      Restart the \"default\" VM. You have two options:  Run  docker-machine start default  in the terminal window or   Use the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".      Note 3 : When working with actual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be abl
 e to see the board correctly. For example, you may see an error message like  Error: unable to find CMSIS-DAP device  when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
+            "title": "Enable USB2 and select your device"
+        }, 
+        {
             "location": "/os/get_started/project_create/", 
             "text": "Create Your First Mynewt Project\n\n\nThis page shows how to create a Mynewt Project using the \nnewt\n command-line tool.\n\n\n\n\nPre-Requisites\n\n\n\n\nNewt:\n\n\nIf you have taken the Docker route, you have already installed Newt.\n\n\nIf you have taken the native install route, you have to ensure that you have installed the Newt tool following the instructions for \nMac\n or \nLinux\n as appropriate, and that the \nnewt\n command is in your system path. \n\n\n\n\n\n\nYou must have Internet connectivity to fetch remote Mynewt components.\n\n\nYou must \ninstall the compiler tools\n to \nsupport native compiling to build the project this tutorial creates.  \n\n\n\n\n\n\nNewt New\n\n\nChoose a project name. For this tutorial we will call this project \nmyproj\n.\nEnter the \nnewt new myproj\n command. \n\n\n$ newt new myproj\nDownloading project skeleton from apache/incubator-mynewt-blinky...\nInstalling skeleton in myproj...\nProject myproj successfully crea
 ted.\n\n\n\n\n\n\n\nNewt populates this new project with a base skeleton of a new Apache Mynewt \nproject.  It has the following structure. \n\n\nNote\n: If you do not have \ntree\n, install it by running \nbrew install tree\n.\n\n\n$ cd myproj\n$ tree \n.\n\u251c\u2500\u2500 DISCLAIMER\n\u251c\u2500\u2500 LICENSE\n\u251c\u2500\u2500 NOTICE\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 apps\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 blinky\n\u2502\u00a0\u00a0     \u251c\u2500\u2500 pkg.yml\n\u2502\u00a0\u00a0     \u2514\u2500\u2500 src\n\u251c\u2500\u2500 project.yml\n\u2514\u2500\u2500 targets\n    \u251c\u2500\u2500 my_blinky_sim\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 pkg.yml\n    \u2502\u00a0\u00a0 \u2514\u2500\u2500 target.yml\n    \u2514\u2500\u2500 unittest\n        \u251c\u2500\u2500 pkg.yml\n        \u2514\u2500\u2500 target.yml\n\n6 directories, 10 files\n\n\n\n\n\n\n\nThe Newt tool has installed the base files for a project comprising the following:\n\n\n\n\nThe file \
 nproject.yml\n contains the repository list that the project uses to fetch\nits packages. Your project is a collection of repositories.  In this case, the project just\ncomprises the core mynewt repository.  Later you will add more repositories\nto include other mynewt components.\n\n\nThe file \napps/blinky/pkg.yml\n contains the description of your application\nand its package dependencies.\n\n\nA \ntarget\n directory containing \nmy_blinky_sim\n, a target descriptor used to\nbuild a version of myproj.  Use \nnewt target show\n to see available build \ntargets.\n\n\nA non-buildable target called \nunittest\n.  This is used internally by \nnewt\n and is not a formal build target.\n\n\n\n\nNOTE:\n the actual code and package files are not installed \n(except the template for \nmain.c\n).  See the next step for installing the packages.\n\n\n\n\nNewt Install\n\n\nOnce you've switched into your new project's directory, the next step is to fetch\nany dependencies this project has.  By d
 efault, all Newt projects rely on a\nsingle remote repository, apache-mynewt-core.  The \nnewt install\n command will\nfetch this repository.\n\n\n$ newt install\napache-mynewt-core\n\n\n\n\n\nNOTE:\n \napache-mynewt-core\n may take a while to download.  To see progress,\nuse the \n-v\n (verbose) option to install. \n\n\n\n\nOnce \nnewt install\n has successfully finished, the contents of \napache-mynewt-core\n will have been downloaded into your local directory.  You can view them by issuing the following commands in the base directory of the new project:\n\n\n$ tree -L 2 repos/apache-mynewt-core/\n.\n\nsnip\n\n\u251c\u2500\u2500 fs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fs\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 nffs\n\u251c\u2500\u2500 hw\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bsp\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 hal\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 mcu\n\u251c\u2500\u2500 libs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 baselibc\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bootu
 til\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cmsis-core\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 console\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 elua\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 flash_test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 imgmgr\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 json\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mbedtls\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 newtmgr\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 os\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 shell\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 testreport\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 testutil\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 util\n\u251c\u2500\u2500 net\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 nimble\n\nsnip\n\n\n\n\n\n\nAs you can see, the core of the Apache Mynewt operating system has been brought \ninto your local directory. \n\n\n\n\nTest the project's packages\n\n\nYou have already built your first basic project. You can ask Newt to execute the unit tests in a package. For example, to test the \nlibs/os\n pac
 kage in the \napache-mynewt-core\n repo, call newt as shown below.\n\n\n$ newt test @apache-mynewt-core/libs/os\nTesting package @apache-mynewt-core/libs/os\nCompiling hal_bsp.c\nCompiling os_bsp.c\nCompiling sbrk.c\nArchiving native.a\nCompiling flash_map.c\n\nsnip\n\n\n\n\n\n\n\n\nTo test all the packages in a project, specify \nall\n instead of the package name.\n\n\n$ newt test all\n...lots of compiling and testing...\n...about 2 minutes later ...\nArchiving bootutil.a\nLinking test_bootutil\nExecuting test: /myproj/bin/unittest/libs/bootutil/test_bootutil\nPassed tests: [net/nimble/host fs/nffs libs/os hw/hal libs/mbedtls libs/util sys/config libs/bootutil]\nAll tests passed\n\n\n\n\n\n\n\nBuild the Project\n\n\nTo build and run your new application, simply issue the following command:\n\n\n$ newt build my_blinky_sim \nCompiling base64.c\nCompiling cbmem.c\nCompiling datetime.c\nCompiling tpq.c\nArchiving util.a\nCompiling main.c\nArchiving blinky.a\nCompiling flash_map.c\nComp
 iling hal_flash.c\nArchiving hal.a\nCompiling cons_fmt.c\nCompiling cons_tty.c\n\nsnip\n\nLinking blinky.elf\nApp successfully built: /Users/sterling/dev/tmp/my_app/bin/my_blinky_sim/apps/blinky/blinky.elf\n\n\n\n\n\n\n\nRun the Project\n\n\nYou can run the simulated version of your project and see the simulated LED\nblink.\n\n\n$ newt run my_blinky_sim\nNo download script for BSP hw/bsp/native\nDebugging /workspace/bin/my_blinky_sim/apps/blinky/blinky.elf\n\nsnip\n\nReading symbols from /workspace/bin/my_blinky_sim/apps/blinky/blinky.elf...done.\n(gdb)\n\n\n\n\n\nType \nr\n at the \n(gdb)\n prompt to run the project. You will see an output indicating that the \nhal_gpio\n pin is toggling between 1 and 0 in a simulated blink. \n\n\n\n\nComplete\n\n\nCongratulations, you have created your first project!  The blinky application\nis not terribly exciting when it is run in the simulator, as there is no LED to\nblink.  Apache Mynewt has a lot more functionality than just running simulate
 d\napplications.  It provides all the features you'll need to cross-compile your\napplication, run it on real hardware and develop a full featured application.\n\n\nIf you're interested in learning more, a good next step is to dig in to one of\nthe \ntutorials\n and get a Mynewt project running on real hardware.\n\n\nHappy Hacking!", 
             "title": "Create Your First Project"

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/newt/install/newt_linux/index.html
----------------------------------------------------------------------
diff --git a/newt/install/newt_linux/index.html b/newt/install/newt_linux/index.html
index c74c467..e955517 100644
--- a/newt/install/newt_linux/index.html
+++ b/newt/install/newt_linux/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>
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/newt/install/newt_mac/index.html
----------------------------------------------------------------------
diff --git a/newt/install/newt_mac/index.html b/newt/install/newt_mac/index.html
index b0c51b6..a2aee70 100644
--- a/newt/install/newt_mac/index.html
+++ b/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>
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/os/get_started/cross_tools/index.html
----------------------------------------------------------------------
diff --git a/os/get_started/cross_tools/index.html b/os/get_started/cross_tools/index.html
index 29ac564..9e3a4a8 100644
--- a/os/get_started/cross_tools/index.html
+++ b/os/get_started/cross_tools/index.html
@@ -211,14 +211,6 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
-    </li>
-
-              
-          
-              
-                
   
   
     <li ><a href="../native_tools/">Native install Option</a>
@@ -261,6 +253,14 @@
               
                 
     <li >
+      <a href="../docker/">Docker Container Option</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../project_create/">Create Your First Project</a>
     </li>
 
@@ -471,8 +471,8 @@ The direct link to the amd64 build is
     </li>
     <li class="pull-right">
     
-    <a href=../project_create/>
-        Next: Create Your First Project
+    <a href=../docker/>
+        Next: Docker Container Option
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/os/get_started/docker/index.html
----------------------------------------------------------------------
diff --git a/os/get_started/docker/index.html b/os/get_started/docker/index.html
index 39efa87..21c30de 100644
--- a/os/get_started/docker/index.html
+++ b/os/get_started/docker/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li class="active">
-      <a href="./">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li class="active">
+      <a href="./">Docker Container Option</a>
     </li>
 
               
@@ -449,16 +449,16 @@ and double click to install</p>
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../get_started/>
+    <a href=../cross_tools/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Basic Setup
+        Previous: Install Cross Tools for ARM
     </a>
     
     </li>
     <li class="pull-right">
     
-    <a href=../native_tools/>
-        Next: Native install Option
+    <a href=../project_create/>
+        Next: Create Your First Project
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/os/get_started/get_started/index.html
----------------------------------------------------------------------
diff --git a/os/get_started/get_started/index.html b/os/get_started/get_started/index.html
index 3e6cfb2..b3027ef 100644
--- a/os/get_started/get_started/index.html
+++ b/os/get_started/get_started/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li >
+      <a href="../docker/">Docker Container Option</a>
     </li>
 
               
@@ -381,8 +381,8 @@
     </li>
     <li class="pull-right">
     
-    <a href=../docker/>
-        Next: Docker Container Option
+    <a href=../native_tools/>
+        Next: Native install Option
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/os/get_started/native_tools/index.html
----------------------------------------------------------------------
diff --git a/os/get_started/native_tools/index.html b/os/get_started/native_tools/index.html
index 460542e..b90cff0 100644
--- a/os/get_started/native_tools/index.html
+++ b/os/get_started/native_tools/index.html
@@ -211,14 +211,6 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
-    </li>
-
-              
-          
-              
-                
   
   
     <li class="active"><a href="./">Native install Option</a>
@@ -261,6 +253,14 @@
               
                 
     <li >
+      <a href="../docker/">Docker Container Option</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../project_create/">Create Your First Project</a>
     </li>
 
@@ -499,9 +499,9 @@ Setting up gdb (7.7.1-0ubuntu5~14.04.2) ...
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../docker/>
+    <a href=../get_started/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Docker Container Option
+        Previous: Basic Setup
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/os/get_started/project_create/index.html
----------------------------------------------------------------------
diff --git a/os/get_started/project_create/index.html b/os/get_started/project_create/index.html
index 3fadafa..04ccfe7 100644
--- a/os/get_started/project_create/index.html
+++ b/os/get_started/project_create/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li >
+      <a href="../docker/">Docker Container Option</a>
     </li>
 
               
@@ -553,9 +553,9 @@ the <a href="../../tutorials/tutorials">tutorials</a> and get a Mynewt project r
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../cross_tools/>
+    <a href=../docker/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Install Cross Tools for ARM
+        Previous: Docker Container Option
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/sitemap.xml
----------------------------------------------------------------------
diff --git a/sitemap.xml b/sitemap.xml
index e6b3f19..4efdb16 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -129,13 +129,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/v0_9_0/sitemap.xml
----------------------------------------------------------------------
diff --git a/v0_9_0/sitemap.xml b/v0_9_0/sitemap.xml
index e6b3f19..4efdb16 100644
--- a/v0_9_0/sitemap.xml
+++ b/v0_9_0/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,13 +13,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/pages/securitybullets/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -28,7 +28,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -36,7 +36,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -44,7 +44,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -52,7 +52,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -60,7 +60,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -68,7 +68,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -77,7 +77,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -89,7 +89,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -129,13 +129,13 @@
         
     <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         



[02/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/modules/console/console_is_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_is_init/index.html b/latest/os/modules/console/console_is_init/index.html
index e64820e..34e56d3 100644
--- a/latest/os/modules/console/console_is_init/index.html
+++ b/latest/os/modules/console/console_is_init/index.html
@@ -570,7 +570,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/modules/console/console_printf/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_printf/index.html b/latest/os/modules/console/console_printf/index.html
index 8331fa0..493570a 100644
--- a/latest/os/modules/console/console_printf/index.html
+++ b/latest/os/modules/console/console_printf/index.html
@@ -570,7 +570,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/modules/console/console_read/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_read/index.html b/latest/os/modules/console/console_read/index.html
index 4515512..1a732a1 100644
--- a/latest/os/modules/console/console_read/index.html
+++ b/latest/os/modules/console/console_read/index.html
@@ -570,7 +570,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/modules/console/console_write/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_write/index.html b/latest/os/modules/console/console_write/index.html
index 7a52dec..55138b4 100644
--- a/latest/os/modules/console/console_write/index.html
+++ b/latest/os/modules/console/console_write/index.html
@@ -570,7 +570,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/modules/devmgmt/customize_newtmgr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/devmgmt/customize_newtmgr/index.html b/latest/os/modules/devmgmt/customize_newtmgr/index.html
index f8e8483..f12c5cf 100644
--- a/latest/os/modules/devmgmt/customize_newtmgr/index.html
+++ b/latest/os/modules/devmgmt/customize_newtmgr/index.html
@@ -513,7 +513,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/modules/devmgmt/newtmgr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/devmgmt/newtmgr/index.html b/latest/os/modules/devmgmt/newtmgr/index.html
index f954bd7..23fade9 100644
--- a/latest/os/modules/devmgmt/newtmgr/index.html
+++ b/latest/os/modules/devmgmt/newtmgr/index.html
@@ -513,7 +513,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/modules/devmgmt/oicmgr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/devmgmt/oicmgr/index.html b/latest/os/modules/devmgmt/oicmgr/index.html
index abbab51..cb883c0 100644
--- a/latest/os/modules/devmgmt/oicmgr/index.html
+++ b/latest/os/modules/devmgmt/oicmgr/index.html
@@ -513,7 +513,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/modules/drivers/driver/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/drivers/driver/index.html b/latest/os/modules/drivers/driver/index.html
index 59d6760..25b6d25 100644
--- a/latest/os/modules/drivers/driver/index.html
+++ b/latest/os/modules/drivers/driver/index.html
@@ -510,7 +510,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/modules/drivers/flash/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/drivers/flash/index.html b/latest/os/modules/drivers/flash/index.html
index d99b004..0c203d9 100644
--- a/latest/os/modules/drivers/flash/index.html
+++ b/latest/os/modules/drivers/flash/index.html
@@ -538,7 +538,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/modules/drivers/mmc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/drivers/mmc/index.html b/latest/os/modules/drivers/mmc/index.html
index 9f8a6fd..0a5aa71 100644
--- a/latest/os/modules/drivers/mmc/index.html
+++ b/latest/os/modules/drivers/mmc/index.html
@@ -538,7 +538,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/modules/fcb/fcb/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb/index.html b/latest/os/modules/fcb/fcb/index.html
index 6b09f39..02e7bd6 100644
--- a/latest/os/modules/fcb/fcb/index.html
+++ b/latest/os/modules/fcb/fcb/index.html
@@ -510,7 +510,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/modules/fcb/fcb_append/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_append/index.html b/latest/os/modules/fcb/fcb_append/index.html
index c0d75dc..7535b56 100644
--- a/latest/os/modules/fcb/fcb_append/index.html
+++ b/latest/os/modules/fcb/fcb_append/index.html
@@ -594,7 +594,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/modules/fcb/fcb_append_finish/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_append_finish/index.html b/latest/os/modules/fcb/fcb_append_finish/index.html
index 5fbefba..2e0c6d7 100644
--- a/latest/os/modules/fcb/fcb_append_finish/index.html
+++ b/latest/os/modules/fcb/fcb_append_finish/index.html
@@ -594,7 +594,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/modules/fcb/fcb_append_to_scratch/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_append_to_scratch/index.html b/latest/os/modules/fcb/fcb_append_to_scratch/index.html
index 0713d2a..ecf008a 100644
--- a/latest/os/modules/fcb/fcb_append_to_scratch/index.html
+++ b/latest/os/modules/fcb/fcb_append_to_scratch/index.html
@@ -594,7 +594,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/modules/fcb/fcb_clear/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_clear/index.html b/latest/os/modules/fcb/fcb_clear/index.html
index ff51c0b..9e9ee35 100644
--- a/latest/os/modules/fcb/fcb_clear/index.html
+++ b/latest/os/modules/fcb/fcb_clear/index.html
@@ -594,7 +594,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/modules/fcb/fcb_getnext/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_getnext/index.html b/latest/os/modules/fcb/fcb_getnext/index.html
index 41a85ad..a52500f 100644
--- a/latest/os/modules/fcb/fcb_getnext/index.html
+++ b/latest/os/modules/fcb/fcb_getnext/index.html
@@ -594,7 +594,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/modules/fcb/fcb_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_init/index.html b/latest/os/modules/fcb/fcb_init/index.html
index aef4090..fd91907 100644
--- a/latest/os/modules/fcb/fcb_init/index.html
+++ b/latest/os/modules/fcb/fcb_init/index.html
@@ -594,7 +594,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/modules/fcb/fcb_is_empty/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_is_empty/index.html b/latest/os/modules/fcb/fcb_is_empty/index.html
index 439d02b..407b434 100644
--- a/latest/os/modules/fcb/fcb_is_empty/index.html
+++ b/latest/os/modules/fcb/fcb_is_empty/index.html
@@ -594,7 +594,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/modules/fcb/fcb_offset_last_n/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_offset_last_n/index.html b/latest/os/modules/fcb/fcb_offset_last_n/index.html
index f2ed5b0..9746717 100644
--- a/latest/os/modules/fcb/fcb_offset_last_n/index.html
+++ b/latest/os/modules/fcb/fcb_offset_last_n/index.html
@@ -594,7 +594,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/modules/fcb/fcb_rotate/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_rotate/index.html b/latest/os/modules/fcb/fcb_rotate/index.html
index ee55ff1..f171014 100644
--- a/latest/os/modules/fcb/fcb_rotate/index.html
+++ b/latest/os/modules/fcb/fcb_rotate/index.html
@@ -594,7 +594,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/modules/fcb/fcb_walk/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fcb/fcb_walk/index.html b/latest/os/modules/fcb/fcb_walk/index.html
index 8711671..61ae6d1 100644
--- a/latest/os/modules/fcb/fcb_walk/index.html
+++ b/latest/os/modules/fcb/fcb_walk/index.html
@@ -594,7 +594,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/modules/fs/fatfs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fatfs/index.html b/latest/os/modules/fs/fatfs/index.html
index 6fff957..0573701 100644
--- a/latest/os/modules/fs/fatfs/index.html
+++ b/latest/os/modules/fs/fatfs/index.html
@@ -533,7 +533,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/modules/fs/fs/fs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs/index.html b/latest/os/modules/fs/fs/fs/index.html
index cd2b47d..79fa91a 100644
--- a/latest/os/modules/fs/fs/fs/index.html
+++ b/latest/os/modules/fs/fs/fs/index.html
@@ -573,7 +573,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/modules/fs/fs/fs_close/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_close/index.html b/latest/os/modules/fs/fs/fs_close/index.html
index 1ccf807..31e0519 100644
--- a/latest/os/modules/fs/fs/fs_close/index.html
+++ b/latest/os/modules/fs/fs/fs_close/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_closedir/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_closedir/index.html b/latest/os/modules/fs/fs/fs_closedir/index.html
index c6c6007..62559ec 100644
--- a/latest/os/modules/fs/fs/fs_closedir/index.html
+++ b/latest/os/modules/fs/fs/fs_closedir/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_dirent_is_dir/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_dirent_is_dir/index.html b/latest/os/modules/fs/fs/fs_dirent_is_dir/index.html
index 6d102f3..683bb75 100644
--- a/latest/os/modules/fs/fs/fs_dirent_is_dir/index.html
+++ b/latest/os/modules/fs/fs/fs_dirent_is_dir/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_dirent_name/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_dirent_name/index.html b/latest/os/modules/fs/fs/fs_dirent_name/index.html
index 3181044..0781a55 100644
--- a/latest/os/modules/fs/fs/fs_dirent_name/index.html
+++ b/latest/os/modules/fs/fs/fs_dirent_name/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_filelen/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_filelen/index.html b/latest/os/modules/fs/fs/fs_filelen/index.html
index bbf2a7c..2a6557e 100644
--- a/latest/os/modules/fs/fs/fs_filelen/index.html
+++ b/latest/os/modules/fs/fs/fs_filelen/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_getpos/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_getpos/index.html b/latest/os/modules/fs/fs/fs_getpos/index.html
index 12592ca..301b758 100644
--- a/latest/os/modules/fs/fs/fs_getpos/index.html
+++ b/latest/os/modules/fs/fs/fs_getpos/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_mkdir/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_mkdir/index.html b/latest/os/modules/fs/fs/fs_mkdir/index.html
index e2b4aa4..802d297 100644
--- a/latest/os/modules/fs/fs/fs_mkdir/index.html
+++ b/latest/os/modules/fs/fs/fs_mkdir/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_open/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_open/index.html b/latest/os/modules/fs/fs/fs_open/index.html
index 7dbb47f..5b5c242 100644
--- a/latest/os/modules/fs/fs/fs_open/index.html
+++ b/latest/os/modules/fs/fs/fs_open/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_opendir/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_opendir/index.html b/latest/os/modules/fs/fs/fs_opendir/index.html
index 2687e5e..3412912 100644
--- a/latest/os/modules/fs/fs/fs_opendir/index.html
+++ b/latest/os/modules/fs/fs/fs_opendir/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_ops/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_ops/index.html b/latest/os/modules/fs/fs/fs_ops/index.html
index bad8a9e..5097fa8 100644
--- a/latest/os/modules/fs/fs/fs_ops/index.html
+++ b/latest/os/modules/fs/fs/fs_ops/index.html
@@ -585,7 +585,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/modules/fs/fs/fs_read/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_read/index.html b/latest/os/modules/fs/fs/fs_read/index.html
index 88d8677..dd7cd7e 100644
--- a/latest/os/modules/fs/fs/fs_read/index.html
+++ b/latest/os/modules/fs/fs/fs_read/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_readdir/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_readdir/index.html b/latest/os/modules/fs/fs/fs_readdir/index.html
index c955d5b..7971adb 100644
--- a/latest/os/modules/fs/fs/fs_readdir/index.html
+++ b/latest/os/modules/fs/fs/fs_readdir/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_register/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_register/index.html b/latest/os/modules/fs/fs/fs_register/index.html
index bf22f45..bd69a82 100644
--- a/latest/os/modules/fs/fs/fs_register/index.html
+++ b/latest/os/modules/fs/fs/fs_register/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_rename/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_rename/index.html b/latest/os/modules/fs/fs/fs_rename/index.html
index 80ef075..9b8678f 100644
--- a/latest/os/modules/fs/fs/fs_rename/index.html
+++ b/latest/os/modules/fs/fs/fs_rename/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_return_codes/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_return_codes/index.html b/latest/os/modules/fs/fs/fs_return_codes/index.html
index 4783ddb..412ecd8 100644
--- a/latest/os/modules/fs/fs/fs_return_codes/index.html
+++ b/latest/os/modules/fs/fs/fs_return_codes/index.html
@@ -573,7 +573,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/modules/fs/fs/fs_seek/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_seek/index.html b/latest/os/modules/fs/fs/fs_seek/index.html
index d925005..b8ea78c 100644
--- a/latest/os/modules/fs/fs/fs_seek/index.html
+++ b/latest/os/modules/fs/fs/fs_seek/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_unlink/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_unlink/index.html b/latest/os/modules/fs/fs/fs_unlink/index.html
index 15c3c70..2aade63 100644
--- a/latest/os/modules/fs/fs/fs_unlink/index.html
+++ b/latest/os/modules/fs/fs/fs_unlink/index.html
@@ -721,7 +721,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/modules/fs/fs/fs_write/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fs_write/index.html b/latest/os/modules/fs/fs/fs_write/index.html
index 130d940..642adb7 100644
--- a/latest/os/modules/fs/fs/fs_write/index.html
+++ b/latest/os/modules/fs/fs/fs_write/index.html
@@ -721,7 +721,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/modules/fs/fs/fsutil_read_file/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fsutil_read_file/index.html b/latest/os/modules/fs/fs/fsutil_read_file/index.html
index 98e7d97..787a9e5 100644
--- a/latest/os/modules/fs/fs/fsutil_read_file/index.html
+++ b/latest/os/modules/fs/fs/fsutil_read_file/index.html
@@ -721,7 +721,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/modules/fs/fs/fsutil_write_file/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/fs/fsutil_write_file/index.html b/latest/os/modules/fs/fs/fsutil_write_file/index.html
index ed3c6a8..004f5cf 100644
--- a/latest/os/modules/fs/fs/fsutil_write_file/index.html
+++ b/latest/os/modules/fs/fs/fsutil_write_file/index.html
@@ -721,7 +721,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/modules/fs/nffs/nffs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs/index.html b/latest/os/modules/fs/nffs/nffs/index.html
index a0398ea..05e9a49 100644
--- a/latest/os/modules/fs/nffs/nffs/index.html
+++ b/latest/os/modules/fs/nffs/nffs/index.html
@@ -573,7 +573,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/modules/fs/nffs/nffs_area_desc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_area_desc/index.html b/latest/os/modules/fs/nffs/nffs_area_desc/index.html
index f206240..15126b1 100644
--- a/latest/os/modules/fs/nffs/nffs_area_desc/index.html
+++ b/latest/os/modules/fs/nffs/nffs_area_desc/index.html
@@ -593,7 +593,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/modules/fs/nffs/nffs_config/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_config/index.html b/latest/os/modules/fs/nffs/nffs_config/index.html
index b102eee..7c96161 100644
--- a/latest/os/modules/fs/nffs/nffs_config/index.html
+++ b/latest/os/modules/fs/nffs/nffs_config/index.html
@@ -593,7 +593,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/modules/fs/nffs/nffs_detect/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_detect/index.html b/latest/os/modules/fs/nffs/nffs_detect/index.html
index 320afac..2be1edb 100644
--- a/latest/os/modules/fs/nffs/nffs_detect/index.html
+++ b/latest/os/modules/fs/nffs/nffs_detect/index.html
@@ -601,7 +601,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/modules/fs/nffs/nffs_format/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_format/index.html b/latest/os/modules/fs/nffs/nffs_format/index.html
index b6727e7..4678c15 100644
--- a/latest/os/modules/fs/nffs/nffs_format/index.html
+++ b/latest/os/modules/fs/nffs/nffs_format/index.html
@@ -601,7 +601,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/modules/fs/nffs/nffs_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_init/index.html b/latest/os/modules/fs/nffs/nffs_init/index.html
index 4e8b9c2..f3de609 100644
--- a/latest/os/modules/fs/nffs/nffs_init/index.html
+++ b/latest/os/modules/fs/nffs/nffs_init/index.html
@@ -601,7 +601,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/modules/fs/nffs/nffs_internals/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/nffs/nffs_internals/index.html b/latest/os/modules/fs/nffs/nffs_internals/index.html
index b6c6d09..1b41d76 100644
--- a/latest/os/modules/fs/nffs/nffs_internals/index.html
+++ b/latest/os/modules/fs/nffs/nffs_internals/index.html
@@ -573,7 +573,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/modules/fs/otherfs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/fs/otherfs/index.html b/latest/os/modules/fs/otherfs/index.html
index 516263f..22ab0a1 100644
--- a/latest/os/modules/fs/otherfs/index.html
+++ b/latest/os/modules/fs/otherfs/index.html
@@ -533,7 +533,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/modules/hal/hal/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal/index.html b/latest/os/modules/hal/hal/index.html
index 618806d..fb9ff9d 100644
--- a/latest/os/modules/hal/hal/index.html
+++ b/latest/os/modules/hal/hal/index.html
@@ -526,7 +526,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/modules/hal/hal_api/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_api/index.html b/latest/os/modules/hal/hal_api/index.html
index 3403f6d..63e2283 100644
--- a/latest/os/modules/hal/hal_api/index.html
+++ b/latest/os/modules/hal/hal_api/index.html
@@ -623,7 +623,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/modules/hal/hal_bsp/hal_bsp/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_bsp/hal_bsp/index.html b/latest/os/modules/hal/hal_bsp/hal_bsp/index.html
index 8543dea..14fd628 100644
--- a/latest/os/modules/hal/hal_bsp/hal_bsp/index.html
+++ b/latest/os/modules/hal/hal_bsp/hal_bsp/index.html
@@ -623,7 +623,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/modules/hal/hal_creation/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_creation/index.html b/latest/os/modules/hal/hal_creation/index.html
index 4abdaec..3d3a540 100644
--- a/latest/os/modules/hal/hal_creation/index.html
+++ b/latest/os/modules/hal/hal_creation/index.html
@@ -526,7 +526,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/modules/hal/hal_flash/hal_flash/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_flash/hal_flash/index.html b/latest/os/modules/hal/hal_flash/hal_flash/index.html
index 9386697..7b19049 100644
--- a/latest/os/modules/hal/hal_flash/hal_flash/index.html
+++ b/latest/os/modules/hal/hal_flash/hal_flash/index.html
@@ -643,7 +643,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/modules/hal/hal_flash/hal_flash_int/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_flash/hal_flash_int/index.html b/latest/os/modules/hal/hal_flash/hal_flash_int/index.html
index 9ad914d..e72d48c 100644
--- a/latest/os/modules/hal/hal_flash/hal_flash_int/index.html
+++ b/latest/os/modules/hal/hal_flash/hal_flash_int/index.html
@@ -643,7 +643,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/modules/hal/hal_gpio/hal_gpio/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_gpio/hal_gpio/index.html b/latest/os/modules/hal/hal_gpio/hal_gpio/index.html
index e14b257..d16723f 100644
--- a/latest/os/modules/hal/hal_gpio/hal_gpio/index.html
+++ b/latest/os/modules/hal/hal_gpio/hal_gpio/index.html
@@ -623,7 +623,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/modules/hal/hal_i2c/hal_i2c/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_i2c/hal_i2c/index.html b/latest/os/modules/hal/hal_i2c/hal_i2c/index.html
index 0abd40a..7912fa4 100644
--- a/latest/os/modules/hal/hal_i2c/hal_i2c/index.html
+++ b/latest/os/modules/hal/hal_i2c/hal_i2c/index.html
@@ -623,7 +623,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/modules/hal/hal_in_libraries/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_in_libraries/index.html b/latest/os/modules/hal/hal_in_libraries/index.html
index f7d4517..ad34701 100644
--- a/latest/os/modules/hal/hal_in_libraries/index.html
+++ b/latest/os/modules/hal/hal_in_libraries/index.html
@@ -526,7 +526,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/modules/hal/hal_os_tick/hal_os_tick/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_os_tick/hal_os_tick/index.html b/latest/os/modules/hal/hal_os_tick/hal_os_tick/index.html
index 5bd177a..4f9b7a8 100644
--- a/latest/os/modules/hal/hal_os_tick/hal_os_tick/index.html
+++ b/latest/os/modules/hal/hal_os_tick/hal_os_tick/index.html
@@ -623,7 +623,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/modules/hal/hal_spi/hal_spi/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_spi/hal_spi/index.html b/latest/os/modules/hal/hal_spi/hal_spi/index.html
index 02599df..f131f7d 100644
--- a/latest/os/modules/hal/hal_spi/hal_spi/index.html
+++ b/latest/os/modules/hal/hal_spi/hal_spi/index.html
@@ -623,7 +623,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/modules/hal/hal_system/hal_sys/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_system/hal_sys/index.html b/latest/os/modules/hal/hal_system/hal_sys/index.html
index 3d8bebc..b74e05a 100644
--- a/latest/os/modules/hal/hal_system/hal_sys/index.html
+++ b/latest/os/modules/hal/hal_system/hal_sys/index.html
@@ -623,7 +623,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/modules/hal/hal_timer/hal_timer/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_timer/hal_timer/index.html b/latest/os/modules/hal/hal_timer/hal_timer/index.html
index d255310..03bb229 100644
--- a/latest/os/modules/hal/hal_timer/hal_timer/index.html
+++ b/latest/os/modules/hal/hal_timer/hal_timer/index.html
@@ -623,7 +623,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/modules/hal/hal_uart/hal_uart/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_uart/hal_uart/index.html b/latest/os/modules/hal/hal_uart/hal_uart/index.html
index ccd97dc..ec467f4 100644
--- a/latest/os/modules/hal/hal_uart/hal_uart/index.html
+++ b/latest/os/modules/hal/hal_uart/hal_uart/index.html
@@ -623,7 +623,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/modules/hal/hal_watchdog/hal_watchdog/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/hal/hal_watchdog/hal_watchdog/index.html b/latest/os/modules/hal/hal_watchdog/hal_watchdog/index.html
index a9d1a64..d5190b1 100644
--- a/latest/os/modules/hal/hal_watchdog/hal_watchdog/index.html
+++ b/latest/os/modules/hal/hal_watchdog/hal_watchdog/index.html
@@ -623,7 +623,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/modules/imgmgr/imgmgr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/imgmgr/imgmgr/index.html b/latest/os/modules/imgmgr/imgmgr/index.html
index 948f611..0df39b2 100644
--- a/latest/os/modules/imgmgr/imgmgr/index.html
+++ b/latest/os/modules/imgmgr/imgmgr/index.html
@@ -510,7 +510,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/modules/imgmgr/imgr_ver_parse/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/imgmgr/imgr_ver_parse/index.html b/latest/os/modules/imgmgr/imgr_ver_parse/index.html
index 60241b2..00ea788 100644
--- a/latest/os/modules/imgmgr/imgr_ver_parse/index.html
+++ b/latest/os/modules/imgmgr/imgr_ver_parse/index.html
@@ -530,7 +530,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/modules/imgmgr/imgr_ver_str/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/imgmgr/imgr_ver_str/index.html b/latest/os/modules/imgmgr/imgr_ver_str/index.html
index bac5a96..9d07c84 100644
--- a/latest/os/modules/imgmgr/imgr_ver_str/index.html
+++ b/latest/os/modules/imgmgr/imgr_ver_str/index.html
@@ -530,7 +530,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/modules/json/json/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json/index.html b/latest/os/modules/json/json/index.html
index 62b1e7d..8be8d28 100644
--- a/latest/os/modules/json/json/index.html
+++ b/latest/os/modules/json/json/index.html
@@ -510,7 +510,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/modules/json/json_encode_object_entry/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json_encode_object_entry/index.html b/latest/os/modules/json/json_encode_object_entry/index.html
index 553c795..25b6f2f 100644
--- a/latest/os/modules/json/json_encode_object_entry/index.html
+++ b/latest/os/modules/json/json_encode_object_entry/index.html
@@ -554,7 +554,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/modules/json/json_encode_object_finish/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json_encode_object_finish/index.html b/latest/os/modules/json/json_encode_object_finish/index.html
index 4ade7fa..7ef1078 100644
--- a/latest/os/modules/json/json_encode_object_finish/index.html
+++ b/latest/os/modules/json/json_encode_object_finish/index.html
@@ -554,7 +554,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/modules/json/json_encode_object_key/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json_encode_object_key/index.html b/latest/os/modules/json/json_encode_object_key/index.html
index cf74e17..b223e5e 100644
--- a/latest/os/modules/json/json_encode_object_key/index.html
+++ b/latest/os/modules/json/json_encode_object_key/index.html
@@ -554,7 +554,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/modules/json/json_encode_object_start/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json_encode_object_start/index.html b/latest/os/modules/json/json_encode_object_start/index.html
index 2d96f14..07cdc57 100644
--- a/latest/os/modules/json/json_encode_object_start/index.html
+++ b/latest/os/modules/json/json_encode_object_start/index.html
@@ -554,7 +554,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/modules/json/json_read_object/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/json/json_read_object/index.html b/latest/os/modules/json/json_read_object/index.html
index 488ec9b..f8fc230 100644
--- a/latest/os/modules/json/json_read_object/index.html
+++ b/latest/os/modules/json/json_read_object/index.html
@@ -554,7 +554,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/modules/logs/logs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/logs/logs/index.html b/latest/os/modules/logs/logs/index.html
index f6cca44..e07cceb 100644
--- a/latest/os/modules/logs/logs/index.html
+++ b/latest/os/modules/logs/logs/index.html
@@ -497,7 +497,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/modules/shell/shell/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/shell/shell/index.html b/latest/os/modules/shell/shell/index.html
index 6dc64bd..bbd52db 100644
--- a/latest/os/modules/shell/shell/index.html
+++ b/latest/os/modules/shell/shell/index.html
@@ -510,7 +510,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/modules/shell/shell_cmd_register/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/shell/shell_cmd_register/index.html b/latest/os/modules/shell/shell_cmd_register/index.html
index 23ebc69..69d086b 100644
--- a/latest/os/modules/shell/shell_cmd_register/index.html
+++ b/latest/os/modules/shell/shell_cmd_register/index.html
@@ -546,7 +546,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/modules/shell/shell_evq_set/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/shell/shell_evq_set/index.html b/latest/os/modules/shell/shell_evq_set/index.html
index 3775585..b35413d 100644
--- a/latest/os/modules/shell/shell_evq_set/index.html
+++ b/latest/os/modules/shell/shell_evq_set/index.html
@@ -546,7 +546,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/modules/shell/shell_nlip_input_register/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/shell/shell_nlip_input_register/index.html b/latest/os/modules/shell/shell_nlip_input_register/index.html
index 6475b63..bd252c8 100644
--- a/latest/os/modules/shell/shell_nlip_input_register/index.html
+++ b/latest/os/modules/shell/shell_nlip_input_register/index.html
@@ -546,7 +546,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/modules/shell/shell_nlip_output/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/shell/shell_nlip_output/index.html b/latest/os/modules/shell/shell_nlip_output/index.html
index b933c65..527bf34 100644
--- a/latest/os/modules/shell/shell_nlip_output/index.html
+++ b/latest/os/modules/shell/shell_nlip_output/index.html
@@ -546,7 +546,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/modules/split/split/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/split/split/index.html b/latest/os/modules/split/split/index.html
index 9b2be3a..da94a82 100644
--- a/latest/os/modules/split/split/index.html
+++ b/latest/os/modules/split/split/index.html
@@ -497,7 +497,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/modules/stats/stats/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/stats/stats/index.html b/latest/os/modules/stats/stats/index.html
index c64d97d..6d65eff 100644
--- a/latest/os/modules/stats/stats/index.html
+++ b/latest/os/modules/stats/stats/index.html
@@ -497,7 +497,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/modules/sysinitconfig/sysconfig_error/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/sysinitconfig/sysconfig_error/index.html b/latest/os/modules/sysinitconfig/sysconfig_error/index.html
index 093d6d9..49a6729 100644
--- a/latest/os/modules/sysinitconfig/sysconfig_error/index.html
+++ b/latest/os/modules/sysinitconfig/sysconfig_error/index.html
@@ -505,7 +505,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/modules/sysinitconfig/sysinitconfig/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/sysinitconfig/sysinitconfig/index.html b/latest/os/modules/sysinitconfig/sysinitconfig/index.html
index 2712f79..f8ee1a1 100644
--- a/latest/os/modules/sysinitconfig/sysinitconfig/index.html
+++ b/latest/os/modules/sysinitconfig/sysinitconfig/index.html
@@ -505,7 +505,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/modules/testutil/test_assert/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/test_assert/index.html b/latest/os/modules/testutil/test_assert/index.html
index 032c9c9..764e63f 100644
--- a/latest/os/modules/testutil/test_assert/index.html
+++ b/latest/os/modules/testutil/test_assert/index.html
@@ -570,7 +570,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/modules/testutil/test_case/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/test_case/index.html b/latest/os/modules/testutil/test_case/index.html
index c9c4b8c..a1f8e2d 100644
--- a/latest/os/modules/testutil/test_case/index.html
+++ b/latest/os/modules/testutil/test_case/index.html
@@ -570,7 +570,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/modules/testutil/test_decl/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/test_decl/index.html b/latest/os/modules/testutil/test_decl/index.html
index 3d57fc4..a79892a 100644
--- a/latest/os/modules/testutil/test_decl/index.html
+++ b/latest/os/modules/testutil/test_decl/index.html
@@ -570,7 +570,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/modules/testutil/test_pass/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/test_pass/index.html b/latest/os/modules/testutil/test_pass/index.html
index 7414276..88cbc0e 100644
--- a/latest/os/modules/testutil/test_pass/index.html
+++ b/latest/os/modules/testutil/test_pass/index.html
@@ -570,7 +570,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/modules/testutil/test_suite/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/test_suite/index.html b/latest/os/modules/testutil/test_suite/index.html
index 8c2ba0e..759d38d 100644
--- a/latest/os/modules/testutil/test_suite/index.html
+++ b/latest/os/modules/testutil/test_suite/index.html
@@ -570,7 +570,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/modules/testutil/testutil/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/testutil/index.html b/latest/os/modules/testutil/testutil/index.html
index 2bb7075..e6cca36 100644
--- a/latest/os/modules/testutil/testutil/index.html
+++ b/latest/os/modules/testutil/testutil/index.html
@@ -510,7 +510,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/modules/testutil/tu_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/tu_init/index.html b/latest/os/modules/testutil/tu_init/index.html
index 26bb755..bb685f1 100644
--- a/latest/os/modules/testutil/tu_init/index.html
+++ b/latest/os/modules/testutil/tu_init/index.html
@@ -570,7 +570,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/modules/testutil/tu_restart/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/testutil/tu_restart/index.html b/latest/os/modules/testutil/tu_restart/index.html
index 0666558..e9d7901 100644
--- a/latest/os/modules/testutil/tu_restart/index.html
+++ b/latest/os/modules/testutil/tu_restart/index.html
@@ -570,7 +570,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/os_user_guide/index.html
----------------------------------------------------------------------
diff --git a/latest/os/os_user_guide/index.html b/latest/os/os_user_guide/index.html
index 4aebb20..ba57af9 100644
--- a/latest/os/os_user_guide/index.html
+++ b/latest/os/os_user_guide/index.html
@@ -491,7 +491,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/tutorials/STM32F303/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/STM32F303/index.html b/latest/os/tutorials/STM32F303/index.html
index f1ab01b..c256e9b 100644
--- a/latest/os/tutorials/STM32F303/index.html
+++ b/latest/os/tutorials/STM32F303/index.html
@@ -515,7 +515,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/tutorials/add_newtmgr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/add_newtmgr/index.html b/latest/os/tutorials/add_newtmgr/index.html
index e3f9ce1..5999c2e 100644
--- a/latest/os/tutorials/add_newtmgr/index.html
+++ b/latest/os/tutorials/add_newtmgr/index.html
@@ -436,7 +436,7 @@
   
   
     <li><a href="
-  ../../../faq/how_to_edit_docs/
+  ../../../faq/go_env/
 ">Appendix</a>
   
   
@@ -491,7 +491,7 @@ to customize your application.</p>
 <p>Ensure that you have met the following prerequisites before continuing with this tutorial:</p>
 <ul>
 <li>Install the <a href="../../../newt/install/newt_mac/">newt tool</a>. </li>
-<li>Install the <a href="../../../newtmgr/installing/">newtmgr tool</a>.</li>
+<li>Install the <a href="../../../newtmgr/install_mac/">newtmgr tool</a>.</li>
 <li>Have Internet connectivity to fetch remote Mynewt components.</li>
 <li>Install the <a href="../../get_started/native_tools/">compiler tools</a> to 
 support native compiling to build the project this tutorial creates.  </li>
@@ -598,7 +598,7 @@ $ newt load myble
 <p>The newtmgr tool requires a connection profile in order to connect to your board. If you have not done so, 
 follow the <a href="../../../newtmgr/command_list/newtmgr_conn/">instructions</a> for setting up your connection profile.</p>
 <p><br></p>
-<h3 id="connecting-with-your-application">Connecting with Your Application</h3>
+<h3 id="communicate-with-your-application">Communicate with Your Application</h3>
 <p>Once you have a connection profile set up, you can connect to your device with <code>newtmgr -c myconn &lt;command&gt;</code> to run commands in your application. </p>
 <p>Issue the <code>echo</code> command to ensure that your application is communicating with the newtmgr tool:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"># newtmgr -c myconn echo hello

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/tutorials/add_shell/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/add_shell/index.html b/latest/os/tutorials/add_shell/index.html
index c35de7a..711ac27 100644
--- a/latest/os/tutorials/add_shell/index.html
+++ b/latest/os/tutorials/add_shell/index.html
@@ -436,7 +436,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/tutorials/air_quality_ble/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/air_quality_ble/index.html b/latest/os/tutorials/air_quality_ble/index.html
index 0beea21..7422d96 100644
--- a/latest/os/tutorials/air_quality_ble/index.html
+++ b/latest/os/tutorials/air_quality_ble/index.html
@@ -456,7 +456,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/tutorials/air_quality_sensor/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/air_quality_sensor/index.html b/latest/os/tutorials/air_quality_sensor/index.html
index d0cd4f2..6e21e19 100644
--- a/latest/os/tutorials/air_quality_sensor/index.html
+++ b/latest/os/tutorials/air_quality_sensor/index.html
@@ -456,7 +456,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/tutorials/arduino_zero/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/arduino_zero/index.html b/latest/os/tutorials/arduino_zero/index.html
index 5943b12..3360523 100644
--- a/latest/os/tutorials/arduino_zero/index.html
+++ b/latest/os/tutorials/arduino_zero/index.html
@@ -501,7 +501,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/tutorials/blehci_project/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/blehci_project/index.html b/latest/os/tutorials/blehci_project/index.html
index 5b5347c..7f898ab 100644
--- a/latest/os/tutorials/blehci_project/index.html
+++ b/latest/os/tutorials/blehci_project/index.html
@@ -436,7 +436,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/tutorials/bleprph/bleprph-adv/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-adv/index.html b/latest/os/tutorials/bleprph/bleprph-adv/index.html
index b0f4dba..99894f3 100644
--- a/latest/os/tutorials/bleprph/bleprph-adv/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-adv/index.html
@@ -482,7 +482,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/tutorials/bleprph/bleprph-app/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-app/index.html b/latest/os/tutorials/bleprph/bleprph-app/index.html
index c8b58dc..4a8a265 100644
--- a/latest/os/tutorials/bleprph/bleprph-app/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-app/index.html
@@ -482,7 +482,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/tutorials/bleprph/bleprph-chr-access/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-chr-access/index.html b/latest/os/tutorials/bleprph/bleprph-chr-access/index.html
index 0c39d5b..5cc9836 100644
--- a/latest/os/tutorials/bleprph/bleprph-chr-access/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-chr-access/index.html
@@ -482,7 +482,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/tutorials/bleprph/bleprph-gap-event/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-gap-event/index.html b/latest/os/tutorials/bleprph/bleprph-gap-event/index.html
index 2467831..b0b1784 100644
--- a/latest/os/tutorials/bleprph/bleprph-gap-event/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-gap-event/index.html
@@ -482,7 +482,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/tutorials/bleprph/bleprph-intro/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-intro/index.html b/latest/os/tutorials/bleprph/bleprph-intro/index.html
index 28261e2..f8ec739 100644
--- a/latest/os/tutorials/bleprph/bleprph-intro/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-intro/index.html
@@ -482,7 +482,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/tutorials/bleprph/bleprph-svc-reg/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bleprph/bleprph-svc-reg/index.html b/latest/os/tutorials/bleprph/bleprph-svc-reg/index.html
index 485a50d..4eb13ee 100644
--- a/latest/os/tutorials/bleprph/bleprph-svc-reg/index.html
+++ b/latest/os/tutorials/bleprph/bleprph-svc-reg/index.html
@@ -482,7 +482,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/tutorials/bletiny_project/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/bletiny_project/index.html b/latest/os/tutorials/bletiny_project/index.html
index 682396a..a9197de 100644
--- a/latest/os/tutorials/bletiny_project/index.html
+++ b/latest/os/tutorials/bletiny_project/index.html
@@ -436,7 +436,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/tutorials/blinky/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/blinky/index.html b/latest/os/tutorials/blinky/index.html
index 233c2c3..72c0ba6 100644
--- a/latest/os/tutorials/blinky/index.html
+++ b/latest/os/tutorials/blinky/index.html
@@ -501,7 +501,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/tutorials/blinky_console/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/blinky_console/index.html b/latest/os/tutorials/blinky_console/index.html
index 814234e..0c1e4ed 100644
--- a/latest/os/tutorials/blinky_console/index.html
+++ b/latest/os/tutorials/blinky_console/index.html
@@ -501,7 +501,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/tutorials/blinky_primo/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/blinky_primo/index.html b/latest/os/tutorials/blinky_primo/index.html
index 4ebd268..39bfa5d 100644
--- a/latest/os/tutorials/blinky_primo/index.html
+++ b/latest/os/tutorials/blinky_primo/index.html
@@ -501,7 +501,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/tutorials/eddystone/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/eddystone/index.html b/latest/os/tutorials/eddystone/index.html
index 609929b..6ca3027 100644
--- a/latest/os/tutorials/eddystone/index.html
+++ b/latest/os/tutorials/eddystone/index.html
@@ -436,7 +436,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/tutorials/event_queue/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/event_queue/index.html b/latest/os/tutorials/event_queue/index.html
index 1e930ba..edc1368 100644
--- a/latest/os/tutorials/event_queue/index.html
+++ b/latest/os/tutorials/event_queue/index.html
@@ -436,7 +436,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/tutorials/ibeacon/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/ibeacon/index.html b/latest/os/tutorials/ibeacon/index.html
index 206eae1..a260af5 100644
--- a/latest/os/tutorials/ibeacon/index.html
+++ b/latest/os/tutorials/ibeacon/index.html
@@ -436,7 +436,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/tutorials/nRF52/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/nRF52/index.html b/latest/os/tutorials/nRF52/index.html
index c978f55..723cfb1 100644
--- a/latest/os/tutorials/nRF52/index.html
+++ b/latest/os/tutorials/nRF52/index.html
@@ -501,7 +501,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/tutorials/nrf52_adc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/nrf52_adc/index.html b/latest/os/tutorials/nrf52_adc/index.html
index cdba618..74c90c3 100644
--- a/latest/os/tutorials/nrf52_adc/index.html
+++ b/latest/os/tutorials/nrf52_adc/index.html
@@ -436,7 +436,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/tutorials/olimex/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/olimex/index.html b/latest/os/tutorials/olimex/index.html
index 7ceb4d2..19f17c7 100644
--- a/latest/os/tutorials/olimex/index.html
+++ b/latest/os/tutorials/olimex/index.html
@@ -501,7 +501,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/tutorials/pin-wheel-mods/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/pin-wheel-mods/index.html b/latest/os/tutorials/pin-wheel-mods/index.html
index 886cad9..8b5a431 100644
--- a/latest/os/tutorials/pin-wheel-mods/index.html
+++ b/latest/os/tutorials/pin-wheel-mods/index.html
@@ -515,7 +515,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/tutorials/project-nrf52-slinky/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/project-nrf52-slinky/index.html b/latest/os/tutorials/project-nrf52-slinky/index.html
index 9c1cb88..c59af5f 100644
--- a/latest/os/tutorials/project-nrf52-slinky/index.html
+++ b/latest/os/tutorials/project-nrf52-slinky/index.html
@@ -466,7 +466,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/tutorials/project-sim-slinky/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/project-sim-slinky/index.html b/latest/os/tutorials/project-sim-slinky/index.html
index 0701e46..9b94d08 100644
--- a/latest/os/tutorials/project-sim-slinky/index.html
+++ b/latest/os/tutorials/project-sim-slinky/index.html
@@ -466,7 +466,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/tutorials/project-slinky/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/project-slinky/index.html b/latest/os/tutorials/project-slinky/index.html
index 8ae237f..5b72a75 100644
--- a/latest/os/tutorials/project-slinky/index.html
+++ b/latest/os/tutorials/project-slinky/index.html
@@ -466,7 +466,7 @@
   
   
     <li><a href="
-  ../../../faq/how_to_edit_docs/
+  ../../../faq/go_env/
 ">Appendix</a>
   
   
@@ -518,7 +518,7 @@
 <li>Have a Micro-USB cable to connect the board and the computer.</li>
 <li>Have a <a href="../../get_started/serial_access/">serial port setup</a>.</li>
 <li>Install the newt tool and the toolchains (See <a href="../../get_started/get_started/">Basic Setup</a>).</li>
-<li>Install the <a href="../../../newtmgr/installing/">newtmgr tool</a>.</li>
+<li>Install the <a href="../../../newtmgr/install_mac/">newtmgr tool</a>.</li>
 <li>Read the Mynewt OS <a href="../../get_started/vocabulary/">Concepts</a> section.</li>
 <li>Create a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or kn
 ow how to as explained in <a href="../../../os/get_started/project_create">Creating Your First Project</a>.</li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/tutorials/project-stm32-slinky/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/project-stm32-slinky/index.html b/latest/os/tutorials/project-stm32-slinky/index.html
index 50003cb..be5ce2f 100644
--- a/latest/os/tutorials/project-stm32-slinky/index.html
+++ b/latest/os/tutorials/project-stm32-slinky/index.html
@@ -466,7 +466,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/tutorials/rbnano2/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/rbnano2/index.html b/latest/os/tutorials/rbnano2/index.html
index 9654e16..a4ae875 100644
--- a/latest/os/tutorials/rbnano2/index.html
+++ b/latest/os/tutorials/rbnano2/index.html
@@ -501,7 +501,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/tutorials/repo/add_repos/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/repo/add_repos/index.html b/latest/os/tutorials/repo/add_repos/index.html
index 6a06e08..82b24df 100644
--- a/latest/os/tutorials/repo/add_repos/index.html
+++ b/latest/os/tutorials/repo/add_repos/index.html
@@ -466,7 +466,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/tutorials/repo/create_repo/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/repo/create_repo/index.html b/latest/os/tutorials/repo/create_repo/index.html
index 248d90f..2a13c64 100644
--- a/latest/os/tutorials/repo/create_repo/index.html
+++ b/latest/os/tutorials/repo/create_repo/index.html
@@ -466,7 +466,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/tutorials/repo/private_repo/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/repo/private_repo/index.html b/latest/os/tutorials/repo/private_repo/index.html
index 4ce1b9c..7d69a31 100644
--- a/latest/os/tutorials/repo/private_repo/index.html
+++ b/latest/os/tutorials/repo/private_repo/index.html
@@ -466,7 +466,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/tutorials/repo/upgrade_repo/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/repo/upgrade_repo/index.html b/latest/os/tutorials/repo/upgrade_repo/index.html
index 53f3c58..302737a 100644
--- a/latest/os/tutorials/repo/upgrade_repo/index.html
+++ b/latest/os/tutorials/repo/upgrade_repo/index.html
@@ -466,7 +466,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/tutorials/tasks_lesson/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/tasks_lesson/index.html b/latest/os/tutorials/tasks_lesson/index.html
index 62cddea..8f5a0b4 100644
--- a/latest/os/tutorials/tasks_lesson/index.html
+++ b/latest/os/tutorials/tasks_lesson/index.html
@@ -436,7 +436,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/tutorials/tutorials/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/tutorials/index.html b/latest/os/tutorials/tutorials/index.html
index 83ab7c7..76fbd1e 100644
--- a/latest/os/tutorials/tutorials/index.html
+++ b/latest/os/tutorials/tutorials/index.html
@@ -436,7 +436,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/tutorials/unit_test/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/unit_test/index.html b/latest/os/tutorials/unit_test/index.html
index ba71dfc..b06afd8 100644
--- a/latest/os/tutorials/unit_test/index.html
+++ b/latest/os/tutorials/unit_test/index.html
@@ -436,7 +436,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/tutorials/wi-fi_on_arduino/index.html
----------------------------------------------------------------------
diff --git a/latest/os/tutorials/wi-fi_on_arduino/index.html b/latest/os/tutorials/wi-fi_on_arduino/index.html
index 0dba558..ed8d7f8 100644
--- a/latest/os/tutorials/wi-fi_on_arduino/index.html
+++ b/latest/os/tutorials/wi-fi_on_arduino/index.html
@@ -436,7 +436,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/search.html
----------------------------------------------------------------------
diff --git a/latest/search.html b/latest/search.html
index 50d9dc0..9f0fd11 100644
--- a/latest/search.html
+++ b/latest/search.html
@@ -203,7 +203,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/sitemap.xml
----------------------------------------------------------------------
diff --git a/latest/sitemap.xml b/latest/sitemap.xml
index 69ea288..c977e77 100644
--- a/latest/sitemap.xml
+++ b/latest/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,7 +13,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -22,7 +22,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -30,7 +30,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -38,7 +38,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -46,7 +46,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -54,7 +54,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -62,7 +62,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -71,7 +71,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -83,7 +83,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -122,14 +122,20 @@
     
         
     <url>
+     <loc>http://mynewt.apache.org/faq/go_env/</loc>
+     <lastmod>2017-04-18</lastmod>
+     <changefreq>daily</changefreq>
+    </url>
+        
+    <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         


[13/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/b3522a13
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/b3522a13
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/b3522a13

Branch: refs/heads/asf-site
Commit: b3522a1385fd23703c72da01019349619e4ad06c
Parents: 4089940
Author: aditihilbert <ad...@runtime.io>
Authored: Tue Apr 18 12:49:58 2017 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Tue Apr 18 12:49:58 2017 -0700

----------------------------------------------------------------------
 develop/faq/answers/index.html                  |  12 +-
 develop/faq/go_env/index.html                   | 448 +++++++++++++++
 develop/faq/how_to_edit_docs/index.html         |  16 +-
 develop/mkdocs/search_index.json                | 244 +++++----
 .../ble/ble_hs/ble_att/ble_att/index.html       |   2 +-
 .../ble_att/functions/ble_att_mtu/index.html    |   2 +-
 .../ble_att_set_preferred_mtu/index.html        |   2 +-
 .../functions/ble_att_svr_read_local/index.html |   2 +-
 .../ble_att_svr_write_local/index.html          |   2 +-
 .../ble/ble_hs/ble_gap/ble_gap/index.html       |   2 +-
 .../ble_gap/definitions/ble_gap_defs/index.html |   2 +-
 .../functions/ble_gap_adv_active/index.html     |   2 +-
 .../ble_gap_adv_rsp_set_fields/index.html       |   2 +-
 .../functions/ble_gap_adv_set_fields/index.html |   2 +-
 .../functions/ble_gap_adv_start/index.html      |   2 +-
 .../functions/ble_gap_adv_stop/index.html       |   2 +-
 .../functions/ble_gap_conn_active/index.html    |   2 +-
 .../functions/ble_gap_conn_cancel/index.html    |   2 +-
 .../functions/ble_gap_conn_find/index.html      |   2 +-
 .../functions/ble_gap_conn_rssi/index.html      |   2 +-
 .../functions/ble_gap_connect/index.html        |   2 +-
 .../ble_gap/functions/ble_gap_disc/index.html   |   2 +-
 .../functions/ble_gap_disc_active/index.html    |   2 +-
 .../functions/ble_gap_disc_cancel/index.html    |   2 +-
 .../ble_gap_security_initiate/index.html        |   2 +-
 .../functions/ble_gap_terminate/index.html      |   2 +-
 .../functions/ble_gap_update_params/index.html  |   2 +-
 .../ble_gap/functions/ble_gap_wl_set/index.html |   2 +-
 .../ble/ble_hs/ble_gattc/ble_gattc/index.html   |   2 +-
 .../definitions/ble_gattc_defs/index.html       |   2 +-
 .../ble_gattc_disc_all_chrs/index.html          |   2 +-
 .../ble_gattc_disc_all_dscs/index.html          |   2 +-
 .../ble_gattc_disc_all_svcs/index.html          |   2 +-
 .../ble_gattc_disc_chrs_by_uuid/index.html      |   2 +-
 .../ble_gattc_disc_svc_by_uuid/index.html       |   2 +-
 .../functions/ble_gattc_exchange_mtu/index.html |   2 +-
 .../ble_gattc_find_inc_svcs/index.html          |   2 +-
 .../functions/ble_gattc_indicate/index.html     |   2 +-
 .../functions/ble_gattc_notify/index.html       |   2 +-
 .../ble_gattc_notify_custom/index.html          |   2 +-
 .../functions/ble_gattc_read/index.html         |   2 +-
 .../functions/ble_gattc_read_by_uuid/index.html |   2 +-
 .../functions/ble_gattc_read_long/index.html    |   2 +-
 .../functions/ble_gattc_read_mult/index.html    |   2 +-
 .../functions/ble_gattc_write/index.html        |   2 +-
 .../functions/ble_gattc_write_flat/index.html   |   2 +-
 .../functions/ble_gattc_write_long/index.html   |   2 +-
 .../functions/ble_gattc_write_no_rsp/index.html |   2 +-
 .../ble_gattc_write_no_rsp_flat/index.html      |   2 +-
 .../ble_gattc_write_reliable/index.html         |   2 +-
 .../ble/ble_hs/ble_gatts/ble_gatts/index.html   |   2 +-
 .../definitions/ble_gatts_defs/index.html       |   2 +-
 .../functions/ble_gatts_add_svcs/index.html     |   2 +-
 .../functions/ble_gatts_count_cfg/index.html    |   2 +-
 .../ble_gatts_count_resources/index.html        |   2 +-
 .../functions/ble_gatts_find_chr/index.html     |   2 +-
 .../functions/ble_gatts_find_dsc/index.html     |   2 +-
 .../functions/ble_gatts_find_svc/index.html     |   2 +-
 .../ble_gatts_register_svcs/index.html          |   2 +-
 develop/network/ble/ble_hs/ble_hs/index.html    |   2 +-
 .../ble/ble_hs/ble_hs_id/ble_hs_id/index.html   |   2 +-
 .../functions/ble_hs_id_copy_addr/index.html    |   2 +-
 .../functions/ble_hs_id_gen_rnd/index.html      |   2 +-
 .../functions/ble_hs_id_set_rnd/index.html      |   2 +-
 .../ble/ble_hs/ble_hs_return_codes/index.html   |   2 +-
 .../init/definitions/init_defs/index.html       |   2 +-
 .../init/functions/ble_hs_init/index.html       |   2 +-
 .../init/functions/ble_hs_start/index.html      |   2 +-
 .../init/functions/ble_hs_synced/index.html     |   2 +-
 develop/network/ble/ble_hs/init/init/index.html |   2 +-
 .../ble_eddystone_set_adv_data_uid/index.html   |   2 +-
 .../ble_eddystone_set_adv_data_url/index.html   |   2 +-
 .../functions/ble_hs_mbuf_att_pkt/index.html    |   2 +-
 .../functions/ble_hs_mbuf_from_flat/index.html  |   2 +-
 .../functions/ble_hs_mbuf_to_flat/index.html    |   2 +-
 .../ble_ibeacon_set_adv_data/index.html         |   2 +-
 .../functions/ble_uuid_128_to_16/index.html     |   2 +-
 .../functions/ble_uuid_16_to_128/index.html     |   2 +-
 .../network/ble/ble_hs/other/other/index.html   |   2 +-
 develop/network/ble/ble_intro/index.html        |   2 +-
 develop/network/ble/ble_sec/index.html          |   2 +-
 .../network/ble/bletiny/bletiny_GAP/index.html  |   2 +-
 .../network/ble/bletiny/bletiny_GATT/index.html |   2 +-
 .../ble/bletiny/bletiny_advdata/index.html      |   2 +-
 .../network/ble/bletiny/bletiny_api/index.html  |   2 +-
 .../ble/ini_stack/ble_add_cpu/index.html        |   2 +-
 .../ble/ini_stack/ble_consolepkg/index.html     |   2 +-
 .../ble/ini_stack/ble_controller_ini/index.html |   2 +-
 .../network/ble/ini_stack/ble_devadd/index.html |   2 +-
 .../ble/ini_stack/ble_host_ini/index.html       |   2 +-
 .../ble/ini_stack/ble_ini_intro/index.html      |   2 +-
 .../ble/ini_stack/ble_mempool/index.html        |   2 +-
 .../ble/ini_stack/ble_parent_ini/index.html     |   2 +-
 .../ble/ini_stack/ble_statpkg/index.html        |   2 +-
 develop/network/ble/nimble_setup/index.html     |   2 +-
 develop/newt/command_list/newt_build/index.html |   2 +-
 develop/newt/command_list/newt_clean/index.html |   2 +-
 .../command_list/newt_create_image/index.html   |   2 +-
 develop/newt/command_list/newt_debug/index.html |   2 +-
 develop/newt/command_list/newt_help/index.html  |   2 +-
 develop/newt/command_list/newt_info/index.html  |   2 +-
 .../newt/command_list/newt_install/index.html   |   2 +-
 develop/newt/command_list/newt_load/index.html  |   2 +-
 develop/newt/command_list/newt_mfg/index.html   |   2 +-
 develop/newt/command_list/newt_new/index.html   |   2 +-
 develop/newt/command_list/newt_pkg/index.html   |   2 +-
 develop/newt/command_list/newt_run/index.html   |   2 +-
 develop/newt/command_list/newt_size/index.html  |   2 +-
 develop/newt/command_list/newt_sync/index.html  |   2 +-
 .../newt/command_list/newt_target/index.html    |   2 +-
 develop/newt/command_list/newt_test/index.html  |   2 +-
 .../newt/command_list/newt_upgrade/index.html   |   2 +-
 develop/newt/command_list/newt_vals/index.html  |   2 +-
 .../newt/command_list/newt_version/index.html   |   2 +-
 develop/newt/install/newt_linux/index.html      |  18 +-
 develop/newt/install/newt_mac/index.html        | 277 +++++-----
 develop/newt/newt_intro/index.html              |   2 +-
 develop/newt/newt_operation/index.html          |   2 +-
 develop/newt/newt_ops/index.html                |   2 +-
 .../command_list/newtmgr_config/index.html      |  11 +-
 .../command_list/newtmgr_conn/index.html        |  11 +-
 .../command_list/newtmgr_crash/index.html       |  11 +-
 .../command_list/newtmgr_datetime/index.html    |  11 +-
 .../command_list/newtmgr_echo/index.html        |  11 +-
 .../newtmgr/command_list/newtmgr_fs/index.html  |  11 +-
 .../command_list/newtmgr_image/index.html       |  11 +-
 .../command_list/newtmgr_logs/index.html        |  11 +-
 .../command_list/newtmgr_mpstats/index.html     |  11 +-
 .../command_list/newtmgr_reset/index.html       |  11 +-
 .../newtmgr/command_list/newtmgr_run/index.html |  11 +-
 .../command_list/newtmgr_stat/index.html        |  11 +-
 .../command_list/newtmgr_taskstats/index.html   |  15 +-
 develop/newtmgr/install_linux/index.html        | 482 ++++++++++++++++
 develop/newtmgr/install_mac/index.html          | 544 +++++++++++++++++++
 develop/newtmgr/installing/index.html           | 462 ----------------
 develop/newtmgr/overview/index.html             |  11 +-
 develop/os/core_os/callout/callout/index.html   |   2 +-
 .../callout/os_callout_func_init/index.html     |   2 +-
 .../core_os/callout/os_callout_init/index.html  |   2 +-
 .../callout/os_callout_queued/index.html        |   2 +-
 .../core_os/callout/os_callout_reset/index.html |   2 +-
 .../core_os/callout/os_callout_stop/index.html  |   2 +-
 .../context_switch/context_switch/index.html    |   2 +-
 .../context_switch/os_arch_ctx_sw/index.html    |   2 +-
 .../core_os/context_switch/os_sched/index.html  |   2 +-
 .../os_sched_ctx_sw_hook/index.html             |   2 +-
 .../os_sched_get_current_task/index.html        |   2 +-
 .../context_switch/os_sched_insert/index.html   |   2 +-
 .../os_sched_next_task/index.html               |   2 +-
 .../os_sched_os_timer_exp/index.html            |   2 +-
 .../context_switch/os_sched_remove/index.html   |   2 +-
 .../context_switch/os_sched_resort/index.html   |   2 +-
 .../os_sched_set_current_task/index.html        |   2 +-
 .../context_switch/os_sched_sleep/index.html    |   2 +-
 .../context_switch/os_sched_wakeup/index.html   |   2 +-
 .../os/core_os/cputime/os_cputime/index.html    |   2 +-
 .../cputime/os_cputime_delay_nsecs/index.html   |   2 +-
 .../cputime/os_cputime_delay_ticks/index.html   |   2 +-
 .../cputime/os_cputime_delay_usecs/index.html   |   2 +-
 .../core_os/cputime/os_cputime_get32/index.html |   2 +-
 .../core_os/cputime/os_cputime_init/index.html  |   2 +-
 .../os_cputime_nsecs_to_ticks/index.html        |   2 +-
 .../os_cputime_ticks_to_nsecs/index.html        |   2 +-
 .../os_cputime_ticks_to_usecs/index.html        |   2 +-
 .../cputime/os_cputime_timer_init/index.html    |   2 +-
 .../os_cputime_timer_relative/index.html        |   2 +-
 .../cputime/os_cputime_timer_start/index.html   |   2 +-
 .../cputime/os_cputime_timer_stop/index.html    |   2 +-
 .../os_cputime_usecs_to_ticks/index.html        |   2 +-
 .../core_os/event_queue/event_queue/index.html  |   2 +-
 .../event_queue/os_eventq_designate/index.html  |   2 +-
 .../event_queue/os_eventq_dflt_get/index.html   |   2 +-
 .../event_queue/os_eventq_get/index.html        |   2 +-
 .../event_queue/os_eventq_init/index.html       |   2 +-
 .../event_queue/os_eventq_inited/index.html     |   2 +-
 .../event_queue/os_eventq_put/index.html        |   2 +-
 .../event_queue/os_eventq_remove/index.html     |   2 +-
 .../event_queue/os_eventq_run/index.html        |   2 +-
 develop/os/core_os/heap/heap/index.html         |   2 +-
 develop/os/core_os/heap/os_free/index.html      |   2 +-
 develop/os/core_os/heap/os_malloc/index.html    |   2 +-
 develop/os/core_os/heap/os_realloc/index.html   |   2 +-
 develop/os/core_os/mbuf/OS_MBUF_DATA/index.html |   2 +-
 .../mbuf/OS_MBUF_LEADINGSPACE/index.html        |   2 +-
 .../os/core_os/mbuf/OS_MBUF_PKTHDR/index.html   |   2 +-
 .../mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html      |   2 +-
 .../os/core_os/mbuf/OS_MBUF_PKTLEN/index.html   |   2 +-
 .../mbuf/OS_MBUF_TRAILINGSPACE/index.html       |   2 +-
 .../os/core_os/mbuf/OS_MBUF_USRHDR/index.html   |   2 +-
 .../core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html  |   2 +-
 develop/os/core_os/mbuf/mbuf/index.html         |   2 +-
 develop/os/core_os/mbuf/os_mbuf_adj/index.html  |   2 +-
 .../os/core_os/mbuf/os_mbuf_append/index.html   |   2 +-
 .../os/core_os/mbuf/os_mbuf_concat/index.html   |   2 +-
 .../os/core_os/mbuf/os_mbuf_copydata/index.html |   2 +-
 .../os/core_os/mbuf/os_mbuf_copyinto/index.html |   2 +-
 develop/os/core_os/mbuf/os_mbuf_dup/index.html  |   2 +-
 .../os/core_os/mbuf/os_mbuf_extend/index.html   |   2 +-
 .../core_os/mbuf/os_mbuf_free_chain/index.html  |   2 +-
 develop/os/core_os/mbuf/os_mbuf_get/index.html  |   2 +-
 .../core_os/mbuf/os_mbuf_get_pkthdr/index.html  |   2 +-
 .../os/core_os/mbuf/os_mbuf_memcmp/index.html   |   2 +-
 develop/os/core_os/mbuf/os_mbuf_off/index.html  |   2 +-
 .../core_os/mbuf/os_mbuf_pool_init/index.html   |   2 +-
 .../os/core_os/mbuf/os_mbuf_prepend/index.html  |   2 +-
 .../os/core_os/mbuf/os_mbuf_pullup/index.html   |   2 +-
 .../memory_pool/OS_MEMPOOL_BYTES/index.html     |   2 +-
 .../memory_pool/OS_MEMPOOL_SIZE/index.html      |   2 +-
 .../core_os/memory_pool/memory_pool/index.html  |   2 +-
 .../memory_pool/os_memblock_get/index.html      |   2 +-
 .../memory_pool/os_memblock_put/index.html      |   2 +-
 .../os_mempool_info_get_next/index.html         |   2 +-
 .../memory_pool/os_mempool_init/index.html      |   2 +-
 develop/os/core_os/mqueue/mqueue/index.html     |   2 +-
 .../os/core_os/mqueue/os_mqueue_get/index.html  |   2 +-
 .../os/core_os/mqueue/os_mqueue_init/index.html |   2 +-
 .../os/core_os/mqueue/os_mqueue_put/index.html  |   2 +-
 develop/os/core_os/msys/msys/index.html         |   2 +-
 develop/os/core_os/msys/os_msys_get/index.html  |   2 +-
 .../core_os/msys/os_msys_get_pkthdr/index.html  |   2 +-
 .../os/core_os/msys/os_msys_register/index.html |   2 +-
 .../os/core_os/msys/os_msys_reset/index.html    |   2 +-
 develop/os/core_os/mutex/mutex/index.html       |   2 +-
 .../os/core_os/mutex/os_mutex_init/index.html   |   2 +-
 .../os/core_os/mutex/os_mutex_pend/index.html   |   2 +-
 .../core_os/mutex/os_mutex_release/index.html   |   2 +-
 develop/os/core_os/mynewt_os/index.html         |   2 +-
 develop/os/core_os/os_started/index.html        |   2 +-
 develop/os/core_os/porting/port_bsp/index.html  |   2 +-
 develop/os/core_os/porting/port_cpu/index.html  |   2 +-
 develop/os/core_os/porting/port_mcu/index.html  |   2 +-
 develop/os/core_os/porting/port_os/index.html   |   2 +-
 .../sanity/os_sanity_check_init/index.html      |   2 +-
 .../sanity/os_sanity_check_register/index.html  |   2 +-
 .../sanity/os_sanity_check_reset/index.html     |   2 +-
 .../sanity/os_sanity_task_checkin/index.html    |   2 +-
 .../sanity/os_sanity_task_init/index.html       |   2 +-
 develop/os/core_os/sanity/sanity/index.html     |   2 +-
 .../os/core_os/semaphore/os_sem_init/index.html |   2 +-
 .../os/core_os/semaphore/os_sem_pend/index.html |   2 +-
 .../core_os/semaphore/os_sem_release/index.html |   2 +-
 .../os/core_os/semaphore/semaphore/index.html   |   2 +-
 .../os/core_os/task/os_task_count/index.html    |   2 +-
 .../task/os_task_info_get_next/index.html       |   2 +-
 develop/os/core_os/task/os_task_init/index.html |   2 +-
 .../os/core_os/task/os_task_remove/index.html   |   2 +-
 develop/os/core_os/task/task/index.html         |   2 +-
 .../core_os/time/os_get_uptime_usec/index.html  |   2 +-
 .../os/core_os/time/os_gettimeofday/index.html  |   2 +-
 .../os/core_os/time/os_settimeofday/index.html  |   2 +-
 develop/os/core_os/time/os_time/index.html      |   2 +-
 .../os/core_os/time/os_time_advance/index.html  |   2 +-
 .../os/core_os/time/os_time_delay/index.html    |   2 +-
 develop/os/core_os/time/os_time_get/index.html  |   2 +-
 .../core_os/time/os_time_ms_to_ticks/index.html |   2 +-
 develop/os/get_started/cross_tools/index.html   |  22 +-
 develop/os/get_started/docker/index.html        |  24 +-
 develop/os/get_started/get_started/index.html   |  27 +-
 develop/os/get_started/native_tools/index.html  |  22 +-
 .../os/get_started/project_create/index.html    |  20 +-
 develop/os/get_started/serial_access/index.html |  16 +-
 develop/os/get_started/vocabulary/index.html    |   2 +-
 develop/os/introduction/index.html              |   6 +-
 develop/os/modules/baselibc/index.html          |   2 +-
 .../bootloader/boot_build_status/index.html     |   2 +-
 .../bootloader/boot_build_status_one/index.html |   2 +-
 .../bootloader/boot_clear_status/index.html     |   2 +-
 .../bootloader/boot_copy_area/index.html        |   2 +-
 .../bootloader/boot_copy_image/index.html       |   2 +-
 .../bootloader/boot_erase_area/index.html       |   2 +-
 .../bootloader/boot_fill_slot/index.html        |   2 +-
 .../boot_find_image_area_idx/index.html         |   2 +-
 .../bootloader/boot_find_image_part/index.html  |   2 +-
 .../bootloader/boot_find_image_slot/index.html  |   2 +-
 .../os/modules/bootloader/boot_go/index.html    |   2 +-
 .../bootloader/boot_init_flash/index.html       |   2 +-
 .../bootloader/boot_move_area/index.html        |   2 +-
 .../boot_read_image_header/index.html           |   2 +-
 .../boot_read_image_headers/index.html          |   2 +-
 .../bootloader/boot_read_status/index.html      |   2 +-
 .../boot_select_image_slot/index.html           |   2 +-
 .../bootloader/boot_slot_addr/index.html        |   2 +-
 .../bootloader/boot_slot_to_area_idx/index.html |   2 +-
 .../bootloader/boot_swap_areas/index.html       |   2 +-
 .../bootloader/boot_vect_delete_main/index.html |   2 +-
 .../bootloader/boot_vect_delete_test/index.html |   2 +-
 .../bootloader/boot_vect_read_main/index.html   |   2 +-
 .../bootloader/boot_vect_read_one/index.html    |   2 +-
 .../bootloader/boot_vect_read_test/index.html   |   2 +-
 .../bootloader/boot_write_status/index.html     |   2 +-
 .../os/modules/bootloader/bootloader/index.html |   2 +-
 develop/os/modules/console/console/index.html   |   2 +-
 .../console/console_blocking_mode/index.html    |   2 +-
 .../os/modules/console/console_echo/index.html  |   2 +-
 .../os/modules/console/console_init/index.html  |   2 +-
 .../modules/console/console_is_init/index.html  |   2 +-
 .../modules/console/console_printf/index.html   |   2 +-
 .../os/modules/console/console_read/index.html  |   2 +-
 .../os/modules/console/console_write/index.html |   2 +-
 .../devmgmt/customize_newtmgr/index.html        |   2 +-
 develop/os/modules/devmgmt/newtmgr/index.html   |   2 +-
 develop/os/modules/devmgmt/oicmgr/index.html    |   2 +-
 develop/os/modules/drivers/driver/index.html    |   2 +-
 develop/os/modules/drivers/flash/index.html     |   2 +-
 develop/os/modules/drivers/mmc/index.html       |   2 +-
 develop/os/modules/fcb/fcb/index.html           |   2 +-
 develop/os/modules/fcb/fcb_append/index.html    |   2 +-
 .../os/modules/fcb/fcb_append_finish/index.html |   2 +-
 .../fcb/fcb_append_to_scratch/index.html        |   2 +-
 develop/os/modules/fcb/fcb_clear/index.html     |   2 +-
 develop/os/modules/fcb/fcb_getnext/index.html   |   2 +-
 develop/os/modules/fcb/fcb_init/index.html      |   2 +-
 develop/os/modules/fcb/fcb_is_empty/index.html  |   2 +-
 .../os/modules/fcb/fcb_offset_last_n/index.html |   2 +-
 develop/os/modules/fcb/fcb_rotate/index.html    |   2 +-
 develop/os/modules/fcb/fcb_walk/index.html      |   2 +-
 develop/os/modules/fs/fatfs/index.html          |   2 +-
 develop/os/modules/fs/fs/fs/index.html          |   2 +-
 develop/os/modules/fs/fs/fs_close/index.html    |   2 +-
 develop/os/modules/fs/fs/fs_closedir/index.html |   2 +-
 .../modules/fs/fs/fs_dirent_is_dir/index.html   |   2 +-
 .../os/modules/fs/fs/fs_dirent_name/index.html  |   2 +-
 develop/os/modules/fs/fs/fs_filelen/index.html  |   2 +-
 develop/os/modules/fs/fs/fs_getpos/index.html   |   2 +-
 develop/os/modules/fs/fs/fs_mkdir/index.html    |   2 +-
 develop/os/modules/fs/fs/fs_open/index.html     |   2 +-
 develop/os/modules/fs/fs/fs_opendir/index.html  |   2 +-
 develop/os/modules/fs/fs/fs_ops/index.html      |   2 +-
 develop/os/modules/fs/fs/fs_read/index.html     |   2 +-
 develop/os/modules/fs/fs/fs_readdir/index.html  |   2 +-
 develop/os/modules/fs/fs/fs_register/index.html |   2 +-
 develop/os/modules/fs/fs/fs_rename/index.html   |   2 +-
 .../os/modules/fs/fs/fs_return_codes/index.html |   2 +-
 develop/os/modules/fs/fs/fs_seek/index.html     |   2 +-
 develop/os/modules/fs/fs/fs_unlink/index.html   |   2 +-
 develop/os/modules/fs/fs/fs_write/index.html    |   2 +-
 .../modules/fs/fs/fsutil_read_file/index.html   |   2 +-
 .../modules/fs/fs/fsutil_write_file/index.html  |   2 +-
 develop/os/modules/fs/nffs/nffs/index.html      |   2 +-
 .../modules/fs/nffs/nffs_area_desc/index.html   |   2 +-
 .../os/modules/fs/nffs/nffs_config/index.html   |   2 +-
 .../os/modules/fs/nffs/nffs_detect/index.html   |   2 +-
 .../os/modules/fs/nffs/nffs_format/index.html   |   2 +-
 develop/os/modules/fs/nffs/nffs_init/index.html |   2 +-
 .../modules/fs/nffs/nffs_internals/index.html   |   2 +-
 develop/os/modules/fs/otherfs/index.html        |   2 +-
 develop/os/modules/hal/hal/index.html           |   2 +-
 develop/os/modules/hal/hal_api/index.html       |   2 +-
 .../os/modules/hal/hal_bsp/hal_bsp/index.html   |   2 +-
 develop/os/modules/hal/hal_creation/index.html  |   2 +-
 .../modules/hal/hal_flash/hal_flash/index.html  |   2 +-
 .../hal/hal_flash/hal_flash_int/index.html      |   2 +-
 .../os/modules/hal/hal_gpio/hal_gpio/index.html |   2 +-
 .../os/modules/hal/hal_i2c/hal_i2c/index.html   |   2 +-
 .../os/modules/hal/hal_in_libraries/index.html  |   2 +-
 .../hal/hal_os_tick/hal_os_tick/index.html      |   2 +-
 .../os/modules/hal/hal_spi/hal_spi/index.html   |   2 +-
 .../modules/hal/hal_system/hal_sys/index.html   |   2 +-
 .../modules/hal/hal_timer/hal_timer/index.html  |   2 +-
 .../os/modules/hal/hal_uart/hal_uart/index.html |   2 +-
 .../hal/hal_watchdog/hal_watchdog/index.html    |   2 +-
 develop/os/modules/imgmgr/imgmgr/index.html     |   2 +-
 .../os/modules/imgmgr/imgr_ver_parse/index.html |   2 +-
 .../os/modules/imgmgr/imgr_ver_str/index.html   |   2 +-
 develop/os/modules/json/json/index.html         |   2 +-
 .../json/json_encode_object_entry/index.html    |   2 +-
 .../json/json_encode_object_finish/index.html   |   2 +-
 .../json/json_encode_object_key/index.html      |   2 +-
 .../json/json_encode_object_start/index.html    |   2 +-
 .../os/modules/json/json_read_object/index.html |   2 +-
 develop/os/modules/logs/logs/index.html         |   2 +-
 develop/os/modules/shell/shell/index.html       |   2 +-
 .../modules/shell/shell_cmd_register/index.html |   2 +-
 .../os/modules/shell/shell_evq_set/index.html   |   2 +-
 .../shell/shell_nlip_input_register/index.html  |   2 +-
 .../modules/shell/shell_nlip_output/index.html  |   2 +-
 develop/os/modules/split/split/index.html       |   2 +-
 develop/os/modules/stats/stats/index.html       |   2 +-
 .../sysinitconfig/sysconfig_error/index.html    |   2 +-
 .../sysinitconfig/sysinitconfig/index.html      |   2 +-
 .../os/modules/testutil/test_assert/index.html  |   2 +-
 .../os/modules/testutil/test_case/index.html    |   2 +-
 .../os/modules/testutil/test_decl/index.html    |   2 +-
 .../os/modules/testutil/test_pass/index.html    |   2 +-
 .../os/modules/testutil/test_suite/index.html   |   2 +-
 develop/os/modules/testutil/testutil/index.html |   2 +-
 develop/os/modules/testutil/tu_init/index.html  |   2 +-
 .../os/modules/testutil/tu_restart/index.html   |   2 +-
 develop/os/os_user_guide/index.html             |   2 +-
 develop/os/tutorials/STM32F303/index.html       |   2 +-
 develop/os/tutorials/add_newtmgr/index.html     |   6 +-
 develop/os/tutorials/add_shell/index.html       |   2 +-
 develop/os/tutorials/air_quality_ble/index.html |   2 +-
 .../os/tutorials/air_quality_sensor/index.html  |   2 +-
 develop/os/tutorials/arduino_zero/index.html    |   2 +-
 develop/os/tutorials/blehci_project/index.html  |   2 +-
 .../os/tutorials/bleprph/bleprph-adv/index.html |   2 +-
 .../os/tutorials/bleprph/bleprph-app/index.html |   2 +-
 .../bleprph/bleprph-chr-access/index.html       |   2 +-
 .../bleprph/bleprph-gap-event/index.html        |   2 +-
 .../tutorials/bleprph/bleprph-intro/index.html  |   2 +-
 .../bleprph/bleprph-svc-reg/index.html          |   2 +-
 develop/os/tutorials/bletiny_project/index.html |   2 +-
 develop/os/tutorials/blinky/index.html          |   2 +-
 develop/os/tutorials/blinky_console/index.html  |   2 +-
 develop/os/tutorials/blinky_primo/index.html    |   2 +-
 develop/os/tutorials/eddystone/index.html       |   2 +-
 develop/os/tutorials/event_queue/index.html     |   2 +-
 develop/os/tutorials/ibeacon/index.html         |   2 +-
 develop/os/tutorials/nRF52/index.html           |   2 +-
 develop/os/tutorials/nrf52_adc/index.html       |   2 +-
 develop/os/tutorials/olimex/index.html          |   2 +-
 develop/os/tutorials/pin-wheel-mods/index.html  |   2 +-
 .../tutorials/project-nrf52-slinky/index.html   |   2 +-
 .../os/tutorials/project-sim-slinky/index.html  |   2 +-
 develop/os/tutorials/project-slinky/index.html  |   4 +-
 .../tutorials/project-stm32-slinky/index.html   |   2 +-
 develop/os/tutorials/rbnano2/index.html         |   2 +-
 develop/os/tutorials/repo/add_repos/index.html  |   2 +-
 .../os/tutorials/repo/create_repo/index.html    |   2 +-
 .../os/tutorials/repo/private_repo/index.html   |   2 +-
 .../os/tutorials/repo/upgrade_repo/index.html   |   2 +-
 develop/os/tutorials/tasks_lesson/index.html    |   2 +-
 develop/os/tutorials/tutorials/index.html       |   2 +-
 develop/os/tutorials/unit_test/index.html       |   2 +-
 .../os/tutorials/wi-fi_on_arduino/index.html    |   2 +-
 develop/search.html                             |   2 +-
 develop/sitemap.xml                             |  30 +-
 latest/faq/answers/index.html                   |  12 +-
 latest/faq/go_env/index.html                    | 448 +++++++++++++++
 latest/faq/how_to_edit_docs/index.html          |  16 +-
 latest/mkdocs/search_index.json                 | 244 +++++----
 .../ble/ble_hs/ble_att/ble_att/index.html       |   2 +-
 .../ble_att/functions/ble_att_mtu/index.html    |   2 +-
 .../ble_att_set_preferred_mtu/index.html        |   2 +-
 .../functions/ble_att_svr_read_local/index.html |   2 +-
 .../ble_att_svr_write_local/index.html          |   2 +-
 .../ble/ble_hs/ble_gap/ble_gap/index.html       |   2 +-
 .../ble_gap/definitions/ble_gap_defs/index.html |   2 +-
 .../functions/ble_gap_adv_active/index.html     |   2 +-
 .../ble_gap_adv_rsp_set_fields/index.html       |   2 +-
 .../functions/ble_gap_adv_set_fields/index.html |   2 +-
 .../functions/ble_gap_adv_start/index.html      |   2 +-
 .../functions/ble_gap_adv_stop/index.html       |   2 +-
 .../functions/ble_gap_conn_active/index.html    |   2 +-
 .../functions/ble_gap_conn_cancel/index.html    |   2 +-
 .../functions/ble_gap_conn_find/index.html      |   2 +-
 .../functions/ble_gap_conn_rssi/index.html      |   2 +-
 .../functions/ble_gap_connect/index.html        |   2 +-
 .../ble_gap/functions/ble_gap_disc/index.html   |   2 +-
 .../functions/ble_gap_disc_active/index.html    |   2 +-
 .../functions/ble_gap_disc_cancel/index.html    |   2 +-
 .../ble_gap_security_initiate/index.html        |   2 +-
 .../functions/ble_gap_terminate/index.html      |   2 +-
 .../functions/ble_gap_update_params/index.html  |   2 +-
 .../ble_gap/functions/ble_gap_wl_set/index.html |   2 +-
 .../ble/ble_hs/ble_gattc/ble_gattc/index.html   |   2 +-
 .../definitions/ble_gattc_defs/index.html       |   2 +-
 .../ble_gattc_disc_all_chrs/index.html          |   2 +-
 .../ble_gattc_disc_all_dscs/index.html          |   2 +-
 .../ble_gattc_disc_all_svcs/index.html          |   2 +-
 .../ble_gattc_disc_chrs_by_uuid/index.html      |   2 +-
 .../ble_gattc_disc_svc_by_uuid/index.html       |   2 +-
 .../functions/ble_gattc_exchange_mtu/index.html |   2 +-
 .../ble_gattc_find_inc_svcs/index.html          |   2 +-
 .../functions/ble_gattc_indicate/index.html     |   2 +-
 .../functions/ble_gattc_notify/index.html       |   2 +-
 .../ble_gattc_notify_custom/index.html          |   2 +-
 .../functions/ble_gattc_read/index.html         |   2 +-
 .../functions/ble_gattc_read_by_uuid/index.html |   2 +-
 .../functions/ble_gattc_read_long/index.html    |   2 +-
 .../functions/ble_gattc_read_mult/index.html    |   2 +-
 .../functions/ble_gattc_write/index.html        |   2 +-
 .../functions/ble_gattc_write_flat/index.html   |   2 +-
 .../functions/ble_gattc_write_long/index.html   |   2 +-
 .../functions/ble_gattc_write_no_rsp/index.html |   2 +-
 .../ble_gattc_write_no_rsp_flat/index.html      |   2 +-
 .../ble_gattc_write_reliable/index.html         |   2 +-
 .../ble/ble_hs/ble_gatts/ble_gatts/index.html   |   2 +-
 .../definitions/ble_gatts_defs/index.html       |   2 +-
 .../functions/ble_gatts_add_svcs/index.html     |   2 +-
 .../functions/ble_gatts_count_cfg/index.html    |   2 +-
 .../ble_gatts_count_resources/index.html        |   2 +-
 .../functions/ble_gatts_find_chr/index.html     |   2 +-
 .../functions/ble_gatts_find_dsc/index.html     |   2 +-
 .../functions/ble_gatts_find_svc/index.html     |   2 +-
 .../ble_gatts_register_svcs/index.html          |   2 +-
 latest/network/ble/ble_hs/ble_hs/index.html     |   2 +-
 .../ble/ble_hs/ble_hs_id/ble_hs_id/index.html   |   2 +-
 .../functions/ble_hs_id_copy_addr/index.html    |   2 +-
 .../functions/ble_hs_id_gen_rnd/index.html      |   2 +-
 .../functions/ble_hs_id_set_rnd/index.html      |   2 +-
 .../ble/ble_hs/ble_hs_return_codes/index.html   |   2 +-
 .../init/definitions/init_defs/index.html       |   2 +-
 .../init/functions/ble_hs_init/index.html       |   2 +-
 .../init/functions/ble_hs_start/index.html      |   2 +-
 .../init/functions/ble_hs_synced/index.html     |   2 +-
 latest/network/ble/ble_hs/init/init/index.html  |   2 +-
 .../ble_eddystone_set_adv_data_uid/index.html   |   2 +-
 .../ble_eddystone_set_adv_data_url/index.html   |   2 +-
 .../functions/ble_hs_mbuf_att_pkt/index.html    |   2 +-
 .../functions/ble_hs_mbuf_from_flat/index.html  |   2 +-
 .../functions/ble_hs_mbuf_to_flat/index.html    |   2 +-
 .../ble_ibeacon_set_adv_data/index.html         |   2 +-
 .../functions/ble_uuid_128_to_16/index.html     |   2 +-
 .../functions/ble_uuid_16_to_128/index.html     |   2 +-
 .../network/ble/ble_hs/other/other/index.html   |   2 +-
 latest/network/ble/ble_intro/index.html         |   2 +-
 latest/network/ble/ble_sec/index.html           |   2 +-
 .../network/ble/bletiny/bletiny_GAP/index.html  |   2 +-
 .../network/ble/bletiny/bletiny_GATT/index.html |   2 +-
 .../ble/bletiny/bletiny_advdata/index.html      |   2 +-
 .../network/ble/bletiny/bletiny_api/index.html  |   2 +-
 .../ble/ini_stack/ble_add_cpu/index.html        |   2 +-
 .../ble/ini_stack/ble_consolepkg/index.html     |   2 +-
 .../ble/ini_stack/ble_controller_ini/index.html |   2 +-
 .../network/ble/ini_stack/ble_devadd/index.html |   2 +-
 .../ble/ini_stack/ble_host_ini/index.html       |   2 +-
 .../ble/ini_stack/ble_ini_intro/index.html      |   2 +-
 .../ble/ini_stack/ble_mempool/index.html        |   2 +-
 .../ble/ini_stack/ble_parent_ini/index.html     |   2 +-
 .../ble/ini_stack/ble_statpkg/index.html        |   2 +-
 latest/network/ble/nimble_setup/index.html      |   2 +-
 latest/newt/command_list/newt_build/index.html  |   2 +-
 latest/newt/command_list/newt_clean/index.html  |   2 +-
 .../command_list/newt_create_image/index.html   |   2 +-
 latest/newt/command_list/newt_debug/index.html  |   2 +-
 latest/newt/command_list/newt_help/index.html   |   2 +-
 latest/newt/command_list/newt_info/index.html   |   2 +-
 .../newt/command_list/newt_install/index.html   |   2 +-
 latest/newt/command_list/newt_load/index.html   |   2 +-
 latest/newt/command_list/newt_mfg/index.html    |   2 +-
 latest/newt/command_list/newt_new/index.html    |   2 +-
 latest/newt/command_list/newt_pkg/index.html    |   2 +-
 latest/newt/command_list/newt_run/index.html    |   2 +-
 latest/newt/command_list/newt_size/index.html   |   2 +-
 latest/newt/command_list/newt_sync/index.html   |   2 +-
 latest/newt/command_list/newt_target/index.html |   2 +-
 latest/newt/command_list/newt_test/index.html   |   2 +-
 .../newt/command_list/newt_upgrade/index.html   |   2 +-
 latest/newt/command_list/newt_vals/index.html   |   2 +-
 .../newt/command_list/newt_version/index.html   |   2 +-
 latest/newt/install/newt_linux/index.html       |  18 +-
 latest/newt/install/newt_mac/index.html         | 277 +++++-----
 latest/newt/newt_intro/index.html               |   2 +-
 latest/newt/newt_operation/index.html           |   2 +-
 latest/newt/newt_ops/index.html                 |   2 +-
 .../command_list/newtmgr_config/index.html      |  11 +-
 .../command_list/newtmgr_conn/index.html        |  11 +-
 .../command_list/newtmgr_crash/index.html       |  11 +-
 .../command_list/newtmgr_datetime/index.html    |  11 +-
 .../command_list/newtmgr_echo/index.html        |  11 +-
 .../newtmgr/command_list/newtmgr_fs/index.html  |  11 +-
 .../command_list/newtmgr_image/index.html       |  11 +-
 .../command_list/newtmgr_logs/index.html        |  11 +-
 .../command_list/newtmgr_mpstats/index.html     |  11 +-
 .../command_list/newtmgr_reset/index.html       |  11 +-
 .../newtmgr/command_list/newtmgr_run/index.html |  11 +-
 .../command_list/newtmgr_stat/index.html        |  11 +-
 .../command_list/newtmgr_taskstats/index.html   |  15 +-
 latest/newtmgr/install_linux/index.html         | 482 ++++++++++++++++
 latest/newtmgr/install_mac/index.html           | 544 +++++++++++++++++++
 latest/newtmgr/installing/index.html            | 462 ----------------
 latest/newtmgr/overview/index.html              |  11 +-
 latest/os/core_os/callout/callout/index.html    |   2 +-
 .../callout/os_callout_func_init/index.html     |   2 +-
 .../core_os/callout/os_callout_init/index.html  |   2 +-
 .../callout/os_callout_queued/index.html        |   2 +-
 .../core_os/callout/os_callout_reset/index.html |   2 +-
 .../core_os/callout/os_callout_stop/index.html  |   2 +-
 .../context_switch/context_switch/index.html    |   2 +-
 .../context_switch/os_arch_ctx_sw/index.html    |   2 +-
 .../core_os/context_switch/os_sched/index.html  |   2 +-
 .../os_sched_ctx_sw_hook/index.html             |   2 +-
 .../os_sched_get_current_task/index.html        |   2 +-
 .../context_switch/os_sched_insert/index.html   |   2 +-
 .../os_sched_next_task/index.html               |   2 +-
 .../os_sched_os_timer_exp/index.html            |   2 +-
 .../context_switch/os_sched_remove/index.html   |   2 +-
 .../context_switch/os_sched_resort/index.html   |   2 +-
 .../os_sched_set_current_task/index.html        |   2 +-
 .../context_switch/os_sched_sleep/index.html    |   2 +-
 .../context_switch/os_sched_wakeup/index.html   |   2 +-
 latest/os/core_os/cputime/os_cputime/index.html |   2 +-
 .../cputime/os_cputime_delay_nsecs/index.html   |   2 +-
 .../cputime/os_cputime_delay_ticks/index.html   |   2 +-
 .../cputime/os_cputime_delay_usecs/index.html   |   2 +-
 .../core_os/cputime/os_cputime_get32/index.html |   2 +-
 .../core_os/cputime/os_cputime_init/index.html  |   2 +-
 .../os_cputime_nsecs_to_ticks/index.html        |   2 +-
 .../os_cputime_ticks_to_nsecs/index.html        |   2 +-
 .../os_cputime_ticks_to_usecs/index.html        |   2 +-
 .../cputime/os_cputime_timer_init/index.html    |   2 +-
 .../os_cputime_timer_relative/index.html        |   2 +-
 .../cputime/os_cputime_timer_start/index.html   |   2 +-
 .../cputime/os_cputime_timer_stop/index.html    |   2 +-
 .../os_cputime_usecs_to_ticks/index.html        |   2 +-
 .../core_os/event_queue/event_queue/index.html  |   2 +-
 .../event_queue/os_eventq_designate/index.html  |   2 +-
 .../event_queue/os_eventq_dflt_get/index.html   |   2 +-
 .../event_queue/os_eventq_get/index.html        |   2 +-
 .../event_queue/os_eventq_init/index.html       |   2 +-
 .../event_queue/os_eventq_inited/index.html     |   2 +-
 .../event_queue/os_eventq_put/index.html        |   2 +-
 .../event_queue/os_eventq_remove/index.html     |   2 +-
 .../event_queue/os_eventq_run/index.html        |   2 +-
 latest/os/core_os/heap/heap/index.html          |   2 +-
 latest/os/core_os/heap/os_free/index.html       |   2 +-
 latest/os/core_os/heap/os_malloc/index.html     |   2 +-
 latest/os/core_os/heap/os_realloc/index.html    |   2 +-
 latest/os/core_os/mbuf/OS_MBUF_DATA/index.html  |   2 +-
 .../mbuf/OS_MBUF_LEADINGSPACE/index.html        |   2 +-
 .../os/core_os/mbuf/OS_MBUF_PKTHDR/index.html   |   2 +-
 .../mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html      |   2 +-
 .../os/core_os/mbuf/OS_MBUF_PKTLEN/index.html   |   2 +-
 .../mbuf/OS_MBUF_TRAILINGSPACE/index.html       |   2 +-
 .../os/core_os/mbuf/OS_MBUF_USRHDR/index.html   |   2 +-
 .../core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html  |   2 +-
 latest/os/core_os/mbuf/mbuf/index.html          |   2 +-
 latest/os/core_os/mbuf/os_mbuf_adj/index.html   |   2 +-
 .../os/core_os/mbuf/os_mbuf_append/index.html   |   2 +-
 .../os/core_os/mbuf/os_mbuf_concat/index.html   |   2 +-
 .../os/core_os/mbuf/os_mbuf_copydata/index.html |   2 +-
 .../os/core_os/mbuf/os_mbuf_copyinto/index.html |   2 +-
 latest/os/core_os/mbuf/os_mbuf_dup/index.html   |   2 +-
 .../os/core_os/mbuf/os_mbuf_extend/index.html   |   2 +-
 .../core_os/mbuf/os_mbuf_free_chain/index.html  |   2 +-
 latest/os/core_os/mbuf/os_mbuf_get/index.html   |   2 +-
 .../core_os/mbuf/os_mbuf_get_pkthdr/index.html  |   2 +-
 .../os/core_os/mbuf/os_mbuf_memcmp/index.html   |   2 +-
 latest/os/core_os/mbuf/os_mbuf_off/index.html   |   2 +-
 .../core_os/mbuf/os_mbuf_pool_init/index.html   |   2 +-
 .../os/core_os/mbuf/os_mbuf_prepend/index.html  |   2 +-
 .../os/core_os/mbuf/os_mbuf_pullup/index.html   |   2 +-
 .../memory_pool/OS_MEMPOOL_BYTES/index.html     |   2 +-
 .../memory_pool/OS_MEMPOOL_SIZE/index.html      |   2 +-
 .../core_os/memory_pool/memory_pool/index.html  |   2 +-
 .../memory_pool/os_memblock_get/index.html      |   2 +-
 .../memory_pool/os_memblock_put/index.html      |   2 +-
 .../os_mempool_info_get_next/index.html         |   2 +-
 .../memory_pool/os_mempool_init/index.html      |   2 +-
 latest/os/core_os/mqueue/mqueue/index.html      |   2 +-
 .../os/core_os/mqueue/os_mqueue_get/index.html  |   2 +-
 .../os/core_os/mqueue/os_mqueue_init/index.html |   2 +-
 .../os/core_os/mqueue/os_mqueue_put/index.html  |   2 +-
 latest/os/core_os/msys/msys/index.html          |   2 +-
 latest/os/core_os/msys/os_msys_get/index.html   |   2 +-
 .../core_os/msys/os_msys_get_pkthdr/index.html  |   2 +-
 .../os/core_os/msys/os_msys_register/index.html |   2 +-
 latest/os/core_os/msys/os_msys_reset/index.html |   2 +-
 latest/os/core_os/mutex/mutex/index.html        |   2 +-
 .../os/core_os/mutex/os_mutex_init/index.html   |   2 +-
 .../os/core_os/mutex/os_mutex_pend/index.html   |   2 +-
 .../core_os/mutex/os_mutex_release/index.html   |   2 +-
 latest/os/core_os/mynewt_os/index.html          |   2 +-
 latest/os/core_os/os_started/index.html         |   2 +-
 latest/os/core_os/porting/port_bsp/index.html   |   2 +-
 latest/os/core_os/porting/port_cpu/index.html   |   2 +-
 latest/os/core_os/porting/port_mcu/index.html   |   2 +-
 latest/os/core_os/porting/port_os/index.html    |   2 +-
 .../sanity/os_sanity_check_init/index.html      |   2 +-
 .../sanity/os_sanity_check_register/index.html  |   2 +-
 .../sanity/os_sanity_check_reset/index.html     |   2 +-
 .../sanity/os_sanity_task_checkin/index.html    |   2 +-
 .../sanity/os_sanity_task_init/index.html       |   2 +-
 latest/os/core_os/sanity/sanity/index.html      |   2 +-
 .../os/core_os/semaphore/os_sem_init/index.html |   2 +-
 .../os/core_os/semaphore/os_sem_pend/index.html |   2 +-
 .../core_os/semaphore/os_sem_release/index.html |   2 +-
 .../os/core_os/semaphore/semaphore/index.html   |   2 +-
 latest/os/core_os/task/os_task_count/index.html |   2 +-
 .../task/os_task_info_get_next/index.html       |   2 +-
 latest/os/core_os/task/os_task_init/index.html  |   2 +-
 .../os/core_os/task/os_task_remove/index.html   |   2 +-
 latest/os/core_os/task/task/index.html          |   2 +-
 .../core_os/time/os_get_uptime_usec/index.html  |   2 +-
 .../os/core_os/time/os_gettimeofday/index.html  |   2 +-
 .../os/core_os/time/os_settimeofday/index.html  |   2 +-
 latest/os/core_os/time/os_time/index.html       |   2 +-
 .../os/core_os/time/os_time_advance/index.html  |   2 +-
 latest/os/core_os/time/os_time_delay/index.html |   2 +-
 latest/os/core_os/time/os_time_get/index.html   |   2 +-
 .../core_os/time/os_time_ms_to_ticks/index.html |   2 +-
 latest/os/get_started/cross_tools/index.html    |  22 +-
 latest/os/get_started/docker/index.html         |  24 +-
 latest/os/get_started/get_started/index.html    |  27 +-
 latest/os/get_started/native_tools/index.html   |  22 +-
 latest/os/get_started/project_create/index.html |  20 +-
 latest/os/get_started/serial_access/index.html  |  16 +-
 latest/os/get_started/vocabulary/index.html     |   2 +-
 latest/os/introduction/index.html               |   6 +-
 latest/os/modules/baselibc/index.html           |   2 +-
 .../bootloader/boot_build_status/index.html     |   2 +-
 .../bootloader/boot_build_status_one/index.html |   2 +-
 .../bootloader/boot_clear_status/index.html     |   2 +-
 .../bootloader/boot_copy_area/index.html        |   2 +-
 .../bootloader/boot_copy_image/index.html       |   2 +-
 .../bootloader/boot_erase_area/index.html       |   2 +-
 .../bootloader/boot_fill_slot/index.html        |   2 +-
 .../boot_find_image_area_idx/index.html         |   2 +-
 .../bootloader/boot_find_image_part/index.html  |   2 +-
 .../bootloader/boot_find_image_slot/index.html  |   2 +-
 latest/os/modules/bootloader/boot_go/index.html |   2 +-
 .../bootloader/boot_init_flash/index.html       |   2 +-
 .../bootloader/boot_move_area/index.html        |   2 +-
 .../boot_read_image_header/index.html           |   2 +-
 .../boot_read_image_headers/index.html          |   2 +-
 .../bootloader/boot_read_status/index.html      |   2 +-
 .../boot_select_image_slot/index.html           |   2 +-
 .../bootloader/boot_slot_addr/index.html        |   2 +-
 .../bootloader/boot_slot_to_area_idx/index.html |   2 +-
 .../bootloader/boot_swap_areas/index.html       |   2 +-
 .../bootloader/boot_vect_delete_main/index.html |   2 +-
 .../bootloader/boot_vect_delete_test/index.html |   2 +-
 .../bootloader/boot_vect_read_main/index.html   |   2 +-
 .../bootloader/boot_vect_read_one/index.html    |   2 +-
 .../bootloader/boot_vect_read_test/index.html   |   2 +-
 .../bootloader/boot_write_status/index.html     |   2 +-
 .../os/modules/bootloader/bootloader/index.html |   2 +-
 latest/os/modules/console/console/index.html    |   2 +-
 .../console/console_blocking_mode/index.html    |   2 +-
 .../os/modules/console/console_echo/index.html  |   2 +-
 .../os/modules/console/console_init/index.html  |   2 +-
 .../modules/console/console_is_init/index.html  |   2 +-
 .../modules/console/console_printf/index.html   |   2 +-
 .../os/modules/console/console_read/index.html  |   2 +-
 .../os/modules/console/console_write/index.html |   2 +-
 .../devmgmt/customize_newtmgr/index.html        |   2 +-
 latest/os/modules/devmgmt/newtmgr/index.html    |   2 +-
 latest/os/modules/devmgmt/oicmgr/index.html     |   2 +-
 latest/os/modules/drivers/driver/index.html     |   2 +-
 latest/os/modules/drivers/flash/index.html      |   2 +-
 latest/os/modules/drivers/mmc/index.html        |   2 +-
 latest/os/modules/fcb/fcb/index.html            |   2 +-
 latest/os/modules/fcb/fcb_append/index.html     |   2 +-
 .../os/modules/fcb/fcb_append_finish/index.html |   2 +-
 .../fcb/fcb_append_to_scratch/index.html        |   2 +-
 latest/os/modules/fcb/fcb_clear/index.html      |   2 +-
 latest/os/modules/fcb/fcb_getnext/index.html    |   2 +-
 latest/os/modules/fcb/fcb_init/index.html       |   2 +-
 latest/os/modules/fcb/fcb_is_empty/index.html   |   2 +-
 .../os/modules/fcb/fcb_offset_last_n/index.html |   2 +-
 latest/os/modules/fcb/fcb_rotate/index.html     |   2 +-
 latest/os/modules/fcb/fcb_walk/index.html       |   2 +-
 latest/os/modules/fs/fatfs/index.html           |   2 +-
 latest/os/modules/fs/fs/fs/index.html           |   2 +-
 latest/os/modules/fs/fs/fs_close/index.html     |   2 +-
 latest/os/modules/fs/fs/fs_closedir/index.html  |   2 +-
 .../modules/fs/fs/fs_dirent_is_dir/index.html   |   2 +-
 .../os/modules/fs/fs/fs_dirent_name/index.html  |   2 +-
 latest/os/modules/fs/fs/fs_filelen/index.html   |   2 +-
 latest/os/modules/fs/fs/fs_getpos/index.html    |   2 +-
 latest/os/modules/fs/fs/fs_mkdir/index.html     |   2 +-
 latest/os/modules/fs/fs/fs_open/index.html      |   2 +-
 latest/os/modules/fs/fs/fs_opendir/index.html   |   2 +-
 latest/os/modules/fs/fs/fs_ops/index.html       |   2 +-
 latest/os/modules/fs/fs/fs_read/index.html      |   2 +-
 latest/os/modules/fs/fs/fs_readdir/index.html   |   2 +-
 latest/os/modules/fs/fs/fs_register/index.html  |   2 +-
 latest/os/modules/fs/fs/fs_rename/index.html    |   2 +-
 .../os/modules/fs/fs/fs_return_codes/index.html |   2 +-
 latest/os/modules/fs/fs/fs_seek/index.html      |   2 +-
 latest/os/modules/fs/fs/fs_unlink/index.html    |   2 +-
 latest/os/modules/fs/fs/fs_write/index.html     |   2 +-
 .../modules/fs/fs/fsutil_read_file/index.html   |   2 +-
 .../modules/fs/fs/fsutil_write_file/index.html  |   2 +-
 latest/os/modules/fs/nffs/nffs/index.html       |   2 +-
 .../modules/fs/nffs/nffs_area_desc/index.html   |   2 +-
 .../os/modules/fs/nffs/nffs_config/index.html   |   2 +-
 .../os/modules/fs/nffs/nffs_detect/index.html   |   2 +-
 .../os/modules/fs/nffs/nffs_format/index.html   |   2 +-
 latest/os/modules/fs/nffs/nffs_init/index.html  |   2 +-
 .../modules/fs/nffs/nffs_internals/index.html   |   2 +-
 latest/os/modules/fs/otherfs/index.html         |   2 +-
 latest/os/modules/hal/hal/index.html            |   2 +-
 latest/os/modules/hal/hal_api/index.html        |   2 +-
 .../os/modules/hal/hal_bsp/hal_bsp/index.html   |   2 +-
 latest/os/modules/hal/hal_creation/index.html   |   2 +-
 .../modules/hal/hal_flash/hal_flash/index.html  |   2 +-
 .../hal/hal_flash/hal_flash_int/index.html      |   2 +-
 .../os/modules/hal/hal_gpio/hal_gpio/index.html |   2 +-
 .../os/modules/hal/hal_i2c/hal_i2c/index.html   |   2 +-
 .../os/modules/hal/hal_in_libraries/index.html  |   2 +-
 .../hal/hal_os_tick/hal_os_tick/index.html      |   2 +-
 .../os/modules/hal/hal_spi/hal_spi/index.html   |   2 +-
 .../modules/hal/hal_system/hal_sys/index.html   |   2 +-
 .../modules/hal/hal_timer/hal_timer/index.html  |   2 +-
 .../os/modules/hal/hal_uart/hal_uart/index.html |   2 +-
 .../hal/hal_watchdog/hal_watchdog/index.html    |   2 +-
 latest/os/modules/imgmgr/imgmgr/index.html      |   2 +-
 .../os/modules/imgmgr/imgr_ver_parse/index.html |   2 +-
 .../os/modules/imgmgr/imgr_ver_str/index.html   |   2 +-
 latest/os/modules/json/json/index.html          |   2 +-
 .../json/json_encode_object_entry/index.html    |   2 +-
 .../json/json_encode_object_finish/index.html   |   2 +-
 .../json/json_encode_object_key/index.html      |   2 +-
 .../json/json_encode_object_start/index.html    |   2 +-
 .../os/modules/json/json_read_object/index.html |   2 +-
 latest/os/modules/logs/logs/index.html          |   2 +-
 latest/os/modules/shell/shell/index.html        |   2 +-
 .../modules/shell/shell_cmd_register/index.html |   2 +-
 .../os/modules/shell/shell_evq_set/index.html   |   2 +-
 .../shell/shell_nlip_input_register/index.html  |   2 +-
 .../modules/shell/shell_nlip_output/index.html  |   2 +-
 latest/os/modules/split/split/index.html        |   2 +-
 latest/os/modules/stats/stats/index.html        |   2 +-
 .../sysinitconfig/sysconfig_error/index.html    |   2 +-
 .../sysinitconfig/sysinitconfig/index.html      |   2 +-
 .../os/modules/testutil/test_assert/index.html  |   2 +-
 latest/os/modules/testutil/test_case/index.html |   2 +-
 latest/os/modules/testutil/test_decl/index.html |   2 +-
 latest/os/modules/testutil/test_pass/index.html |   2 +-
 .../os/modules/testutil/test_suite/index.html   |   2 +-
 latest/os/modules/testutil/testutil/index.html  |   2 +-
 latest/os/modules/testutil/tu_init/index.html   |   2 +-
 .../os/modules/testutil/tu_restart/index.html   |   2 +-
 latest/os/os_user_guide/index.html              |   2 +-
 latest/os/tutorials/STM32F303/index.html        |   2 +-
 latest/os/tutorials/add_newtmgr/index.html      |   6 +-
 latest/os/tutorials/add_shell/index.html        |   2 +-
 latest/os/tutorials/air_quality_ble/index.html  |   2 +-
 .../os/tutorials/air_quality_sensor/index.html  |   2 +-
 latest/os/tutorials/arduino_zero/index.html     |   2 +-
 latest/os/tutorials/blehci_project/index.html   |   2 +-
 .../os/tutorials/bleprph/bleprph-adv/index.html |   2 +-
 .../os/tutorials/bleprph/bleprph-app/index.html |   2 +-
 .../bleprph/bleprph-chr-access/index.html       |   2 +-
 .../bleprph/bleprph-gap-event/index.html        |   2 +-
 .../tutorials/bleprph/bleprph-intro/index.html  |   2 +-
 .../bleprph/bleprph-svc-reg/index.html          |   2 +-
 latest/os/tutorials/bletiny_project/index.html  |   2 +-
 latest/os/tutorials/blinky/index.html           |   2 +-
 latest/os/tutorials/blinky_console/index.html   |   2 +-
 latest/os/tutorials/blinky_primo/index.html     |   2 +-
 latest/os/tutorials/eddystone/index.html        |   2 +-
 latest/os/tutorials/event_queue/index.html      |   2 +-
 latest/os/tutorials/ibeacon/index.html          |   2 +-
 latest/os/tutorials/nRF52/index.html            |   2 +-
 latest/os/tutorials/nrf52_adc/index.html        |   2 +-
 latest/os/tutorials/olimex/index.html           |   2 +-
 latest/os/tutorials/pin-wheel-mods/index.html   |   2 +-
 .../tutorials/project-nrf52-slinky/index.html   |   2 +-
 .../os/tutorials/project-sim-slinky/index.html  |   2 +-
 latest/os/tutorials/project-slinky/index.html   |   4 +-
 .../tutorials/project-stm32-slinky/index.html   |   2 +-
 latest/os/tutorials/rbnano2/index.html          |   2 +-
 latest/os/tutorials/repo/add_repos/index.html   |   2 +-
 latest/os/tutorials/repo/create_repo/index.html |   2 +-
 .../os/tutorials/repo/private_repo/index.html   |   2 +-
 .../os/tutorials/repo/upgrade_repo/index.html   |   2 +-
 latest/os/tutorials/tasks_lesson/index.html     |   2 +-
 latest/os/tutorials/tutorials/index.html        |   2 +-
 latest/os/tutorials/unit_test/index.html        |   2 +-
 latest/os/tutorials/wi-fi_on_arduino/index.html |   2 +-
 latest/search.html                              |   2 +-
 latest/sitemap.xml                              |  30 +-
 mkdocs/search_index.json                        |  90 +--
 newt/install/newt_linux/index.html              |  16 +-
 newt/install/newt_mac/index.html                |  16 +-
 os/get_started/cross_tools/index.html           |  20 +-
 os/get_started/docker/index.html                |  22 +-
 os/get_started/get_started/index.html           |  18 +-
 os/get_started/native_tools/index.html          |  20 +-
 os/get_started/project_create/index.html        |  18 +-
 sitemap.xml                                     |  26 +-
 v0_9_0/sitemap.xml                              |  26 +-
 866 files changed, 4908 insertions(+), 2620 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/faq/answers/index.html
----------------------------------------------------------------------
diff --git a/develop/faq/answers/index.html b/develop/faq/answers/index.html
index 440022a..0a4eb7b 100644
--- a/develop/faq/answers/index.html
+++ b/develop/faq/answers/index.html
@@ -203,7 +203,7 @@
   
   
     <li><a href="
-  ../how_to_edit_docs/
+  ../go_env/
 ">Appendix</a>
   
   
@@ -212,6 +212,14 @@
               
                 
     <li >
+      <a href="../go_env/">Setting Up Go to Contribute to Newt and Newtmgr Tools</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../how_to_edit_docs/">Edit Docs</a>
     </li>
 
@@ -242,7 +250,7 @@
     
     
         
-          <li>&raquo; <a href="../how_to_edit_docs/">Appendix</a></li>
+          <li>&raquo; <a href="../go_env/">Appendix</a></li>
         
       
       

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/faq/go_env/index.html
----------------------------------------------------------------------
diff --git a/develop/faq/go_env/index.html b/develop/faq/go_env/index.html
new file mode 100644
index 0000000..551e115
--- /dev/null
+++ b/develop/faq/go_env/index.html
@@ -0,0 +1,448 @@
+<!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/faq/go_env/"> -->
+        <link rel="shortcut icon" href="../../img/favicon.ico">
+
+	    <title>Setting Up Go to Contribute to Newt and Newtmgr Tools - 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="Setting Up Go to Contribute to Newt and Newtmgr Tools">
+
+
+        <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>
+  
+  
+    </li>
+
+        
+      
+        
+          
+  
+  
+    <li><a href="
+  ./
+">Appendix</a>
+  
+  
+    <ul>
+          
+              
+                
+    <li class="active">
+      <a href="./">Setting Up Go to Contribute to Newt and Newtmgr Tools</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../how_to_edit_docs/">Edit Docs</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../answers/">FAQ</a>
+    </li>
+
+              
+          
+    </ul>
+  
+    </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; Appendix</li>
+        
+      
+      
+        <li>&raquo; Setting Up Go to Contribute to Newt and Newtmgr Tools</li>
+      
+    
+    
+  </ul>
+</div>
+                        </div>
+                        
+                            <h2 id="contributing-to-newt-and-newtmgr-tools">Contributing to Newt and Newtmgr Tools</h2>
+<p>Newt and Newtmgr are written in Go (golang). This guide shows you how to install Go and setup your environment if
+you would like to contribute to the newt or newtmgr tools.</p>
+<p>This guide shows you how to perform the following:</p>
+<ol>
+<li>Install Go on either Mac OS or Linux.</li>
+<li>Setup the Go environment.</li>
+<li>Download the newt and newtmgr source code.</li>
+<li>Build the newt and newtmgr tools.</li>
+<li>Update and rebuild the tools. </li>
+</ol>
+<p>Steps 2-5 apply to both Mac OS and Linux platforms.</p>
+<p><strong>Note:</strong> You will also need to read and follow the instructions from <a href="../../faq/answers/">FAQ</a> to set up your git repos to submit changes.</p>
+<h3 id="step-1-installing-go">Step 1: Installing Go</h3>
+<p>The latest master branch of newt and newtmgr requires GO version 1.6 or higher.
+<br></p>
+<h4 id="installing-go-on-mac-os-x">Installing Go on Mac OS X</h4>
+<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 &quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&quot;
+</pre></div>
+
+
+<p>You can also extract (or <code>git clone</code>) Homebrew and install it to /usr/local.</p>
+<p><br>
+Use brew to install Go:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ brew install go
+==&gt; 
+...
+... 
+==&gt; *Summary*
+\U0001f37a  //usr/local/Cellar/go/1.8.1: 7,030 files, 281.8MB, built in 1 minute 12 seconds
+</pre></div>
+
+
+<p>You can also 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="installing-go-on-linux">Installing Go on Linux</h4>
+<p>Use apt-get to install Go: </p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$sudo apt-get update
+$sudo apt-get install golang 
+Reading package lists... Done
+Building dependency tree       
+Reading state information... Done
+
+      ...
+
+The following NEW packages will be installed:
+  golang
+0 upgraded, 1 newly installed, 0 to remove and 43 not upgraded.
+Need to get 0 B/2,812 B of archives.
+After this operation, 10.2 kB of additional disk space will be used.
+Selecting previously unselected package golang.
+(Reading database ... 244990 files and directories currently installed.)
+Preparing to unpack .../golang_2%3a1.6.1+1ubuntu2_all.deb ...
+Unpacking golang (2:1.6.1+1ubuntu2) ...
+Setting up golang (2:1.6.1+1ubuntu2) ...
+$ go version
+go version go1.6.3 linux/amd64
+</pre></div>
+
+
+<p><br></p>
+<h3 id="step-2-setting-up-your-go-environment">Step 2: Setting Up Your Go Environment</h3>
+<p>Go provides an environment to compile Go code, construct Go packages,  and import Go code.  You will use Go commands to import the <strong>newt</strong> repository into your local Go environment.  The Go language environment dictates a specific directory structure, or workspace in Go parlance. It must contain three sibling directories with the names <strong>src</strong>, <strong>pkg</strong> and <strong>bin</strong>: </p>
+<ul>
+<li>src contains Go source files organized into packages (one package per directory)</li>
+<li>pkg contains package objects</li>
+<li>bin contains executable commands.</li>
+</ul>
+<p>The <strong>GOPATH</strong> environment variable specifies the location of your workspace. To setup this workspace environment, create a <strong>dev</strong> directory and then a <strong>go</strong> directory under it. Set the GOPATH environment variable to this directory where you will clone the newt repository.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ cd $HOME
+$ mkdir -p dev/go  
+$ cd dev/go
+$ export GOPATH=`pwd`
+</pre></div>
+
+
+<p><br>
+Add the export GOPATH statement to the ~/.bash_profile file and source the file:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ vi ~/.bash_profile
+$ source ~/.bash_profile
+</pre></div>
+
+
+<p><br></p>
+<h3 id="step-3-downloading-the-source">Step 3: Downloading the Source</h3>
+<p>Use Go commands to retrieve the latest source from the newt repository (currently the ASF incubator directory). Check that the directories are installed.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ go get mynewt.apache.org/newt/...
+$ ls $GOPATH/src/mynewt.apache.org/newt
+DISCLAIMER  NOTICE      newt        newtvm      viper
+LICENSE     README.md   newtmgr     util        yaml
+</pre></div>
+
+
+<p><br></p>
+<h3 id="step-4-building-the-newt-and-newtmgr-tools">Step 4: Building the Newt and Newtmgr Tools</h3>
+<p>Perform the following commands to build the tools:</p>
+<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
+</pre></div>
+
+
+<p><br></p>
+<h3 id="step-5-updating-and-rebuilding-the-tools">Step 5: Updating and Rebuilding the Tools</h3>
+<p>Change to the directory where you initially installed the source: </p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ cd $GOPATH/src/mynewt.apache.org/newt
+</pre></div>
+
+
+<p><br>
+Pull the latest source from the repository (you can change to a different branch using git checkout [branch] if you need to)</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ git pull
+</pre></div>
+
+
+<p><br>
+Install the tools from the latest source:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ cd newt
+$ go install
+$ cd ../newtmgr
+$ go install
+$ ls $GOPATH /bin/
+newt newtmgr newtvm
+</pre></div>
+
+
+<p>This should have updated your newt and newtmgr to the latest version based on the git repository you used.</p>
+                        
+                        <div class="row">
+                            
+
+
+
+<ul class="nav nav-pills" style="margin-bottom: 10px">
+    <li>
+    
+    <a href=../../newtmgr/install_linux/>
+        <span class="fa fa-arrow-left"></span>
+        Previous: Install Newtmgr On Linux
+    </a>
+    
+    </li>
+    <li class="pull-right">
+    
+    <a href=../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/develop/faq/how_to_edit_docs/index.html
----------------------------------------------------------------------
diff --git a/develop/faq/how_to_edit_docs/index.html b/develop/faq/how_to_edit_docs/index.html
index 7a0ba4a..a0f2954 100644
--- a/develop/faq/how_to_edit_docs/index.html
+++ b/develop/faq/how_to_edit_docs/index.html
@@ -203,7 +203,7 @@
   
   
     <li><a href="
-  ./
+  ../go_env/
 ">Appendix</a>
   
   
@@ -211,6 +211,14 @@
           
               
                 
+    <li >
+      <a href="../go_env/">Setting Up Go to Contribute to Newt and Newtmgr Tools</a>
+    </li>
+
+              
+          
+              
+                
     <li class="active">
       <a href="./">Edit Docs</a>
     </li>
@@ -242,7 +250,7 @@
     
     
         
-          <li>&raquo; Appendix</li>
+          <li>&raquo; <a href="../go_env/">Appendix</a></li>
         
       
       
@@ -309,9 +317,9 @@
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../../newtmgr/installing/>
+    <a href=../go_env/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Install
+        Previous: Setting Up Go to Contribute to Newt and Newtmgr Tools
     </a>
     
     </li>


[07/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/faq/go_env/index.html
----------------------------------------------------------------------
diff --git a/latest/faq/go_env/index.html b/latest/faq/go_env/index.html
new file mode 100644
index 0000000..17b0d97
--- /dev/null
+++ b/latest/faq/go_env/index.html
@@ -0,0 +1,448 @@
+<!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/faq/go_env/"> -->
+        <link rel="shortcut icon" href="../../img/favicon.ico">
+
+	    <title>Setting Up Go to Contribute to Newt and Newtmgr Tools - 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="Setting Up Go to Contribute to Newt and Newtmgr Tools">
+
+
+        <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>
+  
+  
+    </li>
+
+        
+      
+        
+          
+  
+  
+    <li><a href="
+  ./
+">Appendix</a>
+  
+  
+    <ul>
+          
+              
+                
+    <li class="active">
+      <a href="./">Setting Up Go to Contribute to Newt and Newtmgr Tools</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../how_to_edit_docs/">Edit Docs</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
+      <a href="../answers/">FAQ</a>
+    </li>
+
+              
+          
+    </ul>
+  
+    </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>&raquo; Appendix</li>
+        
+      
+      
+        <li>&raquo; Setting Up Go to Contribute to Newt and Newtmgr Tools</li>
+      
+    
+    
+  </ul>
+</div>
+                        </div>
+                        
+                            <h2 id="contributing-to-newt-and-newtmgr-tools">Contributing to Newt and Newtmgr Tools</h2>
+<p>Newt and Newtmgr are written in Go (golang). This guide shows you how to install Go and setup your environment if
+you would like to contribute to the newt or newtmgr tools.</p>
+<p>This guide shows you how to perform the following:</p>
+<ol>
+<li>Install Go on either Mac OS or Linux.</li>
+<li>Setup the Go environment.</li>
+<li>Download the newt and newtmgr source code.</li>
+<li>Build the newt and newtmgr tools.</li>
+<li>Update and rebuild the tools. </li>
+</ol>
+<p>Steps 2-5 apply to both Mac OS and Linux platforms.</p>
+<p><strong>Note:</strong> You will also need to read and follow the instructions from <a href="../../faq/answers/">FAQ</a> to set up your git repos to submit changes.</p>
+<h3 id="step-1-installing-go">Step 1: Installing Go</h3>
+<p>The latest master branch of newt and newtmgr requires GO version 1.6 or higher.
+<br></p>
+<h4 id="installing-go-on-mac-os-x">Installing Go on Mac OS X</h4>
+<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 &quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&quot;
+</pre></div>
+
+
+<p>You can also extract (or <code>git clone</code>) Homebrew and install it to /usr/local.</p>
+<p><br>
+Use brew to install Go:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ brew install go
+==&gt; 
+...
+... 
+==&gt; *Summary*
+\U0001f37a  //usr/local/Cellar/go/1.8.1: 7,030 files, 281.8MB, built in 1 minute 12 seconds
+</pre></div>
+
+
+<p>You can also 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="installing-go-on-linux">Installing Go on Linux</h4>
+<p>Use apt-get to install Go: </p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$sudo apt-get update
+$sudo apt-get install golang 
+Reading package lists... Done
+Building dependency tree       
+Reading state information... Done
+
+      ...
+
+The following NEW packages will be installed:
+  golang
+0 upgraded, 1 newly installed, 0 to remove and 43 not upgraded.
+Need to get 0 B/2,812 B of archives.
+After this operation, 10.2 kB of additional disk space will be used.
+Selecting previously unselected package golang.
+(Reading database ... 244990 files and directories currently installed.)
+Preparing to unpack .../golang_2%3a1.6.1+1ubuntu2_all.deb ...
+Unpacking golang (2:1.6.1+1ubuntu2) ...
+Setting up golang (2:1.6.1+1ubuntu2) ...
+$ go version
+go version go1.6.3 linux/amd64
+</pre></div>
+
+
+<p><br></p>
+<h3 id="step-2-setting-up-your-go-environment">Step 2: Setting Up Your Go Environment</h3>
+<p>Go provides an environment to compile Go code, construct Go packages,  and import Go code.  You will use Go commands to import the <strong>newt</strong> repository into your local Go environment.  The Go language environment dictates a specific directory structure, or workspace in Go parlance. It must contain three sibling directories with the names <strong>src</strong>, <strong>pkg</strong> and <strong>bin</strong>: </p>
+<ul>
+<li>src contains Go source files organized into packages (one package per directory)</li>
+<li>pkg contains package objects</li>
+<li>bin contains executable commands.</li>
+</ul>
+<p>The <strong>GOPATH</strong> environment variable specifies the location of your workspace. To setup this workspace environment, create a <strong>dev</strong> directory and then a <strong>go</strong> directory under it. Set the GOPATH environment variable to this directory where you will clone the newt repository.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ cd $HOME
+$ mkdir -p dev/go  
+$ cd dev/go
+$ export GOPATH=`pwd`
+</pre></div>
+
+
+<p><br>
+Add the export GOPATH statement to the ~/.bash_profile file and source the file:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ vi ~/.bash_profile
+$ source ~/.bash_profile
+</pre></div>
+
+
+<p><br></p>
+<h3 id="step-3-downloading-the-source">Step 3: Downloading the Source</h3>
+<p>Use Go commands to retrieve the latest source from the newt repository (currently the ASF incubator directory). Check that the directories are installed.</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ go get mynewt.apache.org/newt/...
+$ ls $GOPATH/src/mynewt.apache.org/newt
+DISCLAIMER  NOTICE      newt        newtvm      viper
+LICENSE     README.md   newtmgr     util        yaml
+</pre></div>
+
+
+<p><br></p>
+<h3 id="step-4-building-the-newt-and-newtmgr-tools">Step 4: Building the Newt and Newtmgr Tools</h3>
+<p>Perform the following commands to build the tools:</p>
+<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
+</pre></div>
+
+
+<p><br></p>
+<h3 id="step-5-updating-and-rebuilding-the-tools">Step 5: Updating and Rebuilding the Tools</h3>
+<p>Change to the directory where you initially installed the source: </p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ cd $GOPATH/src/mynewt.apache.org/newt
+</pre></div>
+
+
+<p><br>
+Pull the latest source from the repository (you can change to a different branch using git checkout [branch] if you need to)</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ git pull
+</pre></div>
+
+
+<p><br>
+Install the tools from the latest source:</p>
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ cd newt
+$ go install
+$ cd ../newtmgr
+$ go install
+$ ls $GOPATH /bin/
+newt newtmgr newtvm
+</pre></div>
+
+
+<p>This should have updated your newt and newtmgr to the latest version based on the git repository you used.</p>
+                        
+                        <div class="row">
+                            
+
+
+
+<ul class="nav nav-pills" style="margin-bottom: 10px">
+    <li>
+    
+    <a href=../../newtmgr/install_linux/>
+        <span class="fa fa-arrow-left"></span>
+        Previous: Install Newtmgr On Linux
+    </a>
+    
+    </li>
+    <li class="pull-right">
+    
+    <a href=../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/faq/how_to_edit_docs/index.html
----------------------------------------------------------------------
diff --git a/latest/faq/how_to_edit_docs/index.html b/latest/faq/how_to_edit_docs/index.html
index f92ef88..d204e28 100644
--- a/latest/faq/how_to_edit_docs/index.html
+++ b/latest/faq/how_to_edit_docs/index.html
@@ -203,7 +203,7 @@
   
   
     <li><a href="
-  ./
+  ../go_env/
 ">Appendix</a>
   
   
@@ -211,6 +211,14 @@
           
               
                 
+    <li >
+      <a href="../go_env/">Setting Up Go to Contribute to Newt and Newtmgr Tools</a>
+    </li>
+
+              
+          
+              
+                
     <li class="active">
       <a href="./">Edit Docs</a>
     </li>
@@ -242,7 +250,7 @@
     
     
         
-          <li>&raquo; Appendix</li>
+          <li>&raquo; <a href="../go_env/">Appendix</a></li>
         
       
       
@@ -309,9 +317,9 @@
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../../newtmgr/installing/>
+    <a href=../go_env/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Install
+        Previous: Setting Up Go to Contribute to Newt and Newtmgr Tools
     </a>
     
     </li>


[06/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/mkdocs/search_index.json
----------------------------------------------------------------------
diff --git a/latest/mkdocs/search_index.json b/latest/mkdocs/search_index.json
index 23eceed..0af8892 100644
--- a/latest/mkdocs/search_index.json
+++ b/latest/mkdocs/search_index.json
@@ -107,7 +107,7 @@
         }, 
         {
             "location": "/os/introduction/", 
-            "text": "Introduction\n\n\nWelcome to Apache Mynewt\n\n\nApache Mynewt is an operating system that makes it easy to develop\napplications for microcontroller environments where power and cost\nare driving factors. Examples of these devices are connected locks,\nlights, and wearables.\n\n\nMicrocontroller environments have a number of characteristics that\nmakes the operating system requirements for them unique:\n\n\n\n\n\n\nLow memory footprint: memory on these systems range from\n8-16KB (on the low end) to 16MB (on the high end).\n\n\n\n\n\n\nReduced code size: code often runs out of flash, and total available code size ranges from 64-128KB to 16-32MB.\n\n\n\n\n\n\nLow processing speed: processor speeds vary from 10-12MHz to 160-200MHz.  \n\n\n\n\n\n\nLow power operation: devices operate in mostly sleeping mode, in order to conserve\nbattery power and maximize power usage.\n\n\n\n\n\n\nAs more and more devices get connected, these interconnected devices perform complex 
 tasks. To\nperform these tasks, you need low-level operational functionality built into the operating system.\nTypically, connected devices built with these microcontrollers perform a myriad of functions:\n\n\n\n\n\n\nNetworking Stacks: Bluetooth Low Energy and Thread\n\n\n\n\n\n\nPeripherals: PWM to drive motors, ADCs to measure sensor data, and RTCs\nto keep time.\n\n\n\n\n\n\nScheduled Processing: actions must happen on a calendared or periodic basis.\n\n\n\n\n\n\nApache Mynewt accomplishes all the above easily, by providing a complete\noperating system for constrained devices, including:\n\n\n\n\n\n\nA fully open-source Bluetooth Low Energy stack with both Host and\nController implementations.\n\n\n\n\n\n\nA pre-emptive, multi-tasking Real Time operating system kernel\n\n\n\n\n\n\nA Hardware Abstraction Layer (HAL) that abstracts the MCU's\nperipheral functions, allowing developers to easily write cross-platform\ncode.\n\n\n\n\n\n\n\n\nNewt\n\n\nIn order to provide all this func
 tionality, and operate in an\nextremely low resource environment, Mynewt provides a very fine-grained source\npackage management and build system tool, called \nnewt\n.\n\n\nYou can install and build \nnewt\n for \nLinux\n or \nMac\n.\n\n\n\n\nNewt Manager\n\n\nIn order to enable a user to communicate with remote instances of Mynewt OS and query, configure, and operate them, Mynewt provides an application tool called Newt Manager or \nnewtmgr\n.\n\n\nYou can install and build \nnewtmgr\n from source code on \nLinux or Mac\n.\n\n\n\n\nBuild your first Mynewt App with Newt\n\n\nWith the introductions out of the way, now is a good time to \nget set up and\nstarted\n with your first Mynewt application.\n\n\nHappy Hacking!", 
+            "text": "Introduction\n\n\nWelcome to Apache Mynewt\n\n\nApache Mynewt is an operating system that makes it easy to develop\napplications for microcontroller environments where power and cost\nare driving factors. Examples of these devices are connected locks,\nlights, and wearables.\n\n\nMicrocontroller environments have a number of characteristics that\nmakes the operating system requirements for them unique:\n\n\n\n\n\n\nLow memory footprint: memory on these systems range from\n8-16KB (on the low end) to 16MB (on the high end).\n\n\n\n\n\n\nReduced code size: code often runs out of flash, and total available code size ranges from 64-128KB to 16-32MB.\n\n\n\n\n\n\nLow processing speed: processor speeds vary from 10-12MHz to 160-200MHz.  \n\n\n\n\n\n\nLow power operation: devices operate in mostly sleeping mode, in order to conserve\nbattery power and maximize power usage.\n\n\n\n\n\n\nAs more and more devices get connected, these interconnected devices perform complex 
 tasks. To\nperform these tasks, you need low-level operational functionality built into the operating system.\nTypically, connected devices built with these microcontrollers perform a myriad of functions:\n\n\n\n\n\n\nNetworking Stacks: Bluetooth Low Energy and Thread\n\n\n\n\n\n\nPeripherals: PWM to drive motors, ADCs to measure sensor data, and RTCs\nto keep time.\n\n\n\n\n\n\nScheduled Processing: actions must happen on a calendared or periodic basis.\n\n\n\n\n\n\nApache Mynewt accomplishes all the above easily, by providing a complete\noperating system for constrained devices, including:\n\n\n\n\n\n\nA fully open-source Bluetooth Low Energy stack with both Host and\nController implementations.\n\n\n\n\n\n\nA pre-emptive, multi-tasking Real Time operating system kernel\n\n\n\n\n\n\nA Hardware Abstraction Layer (HAL) that abstracts the MCU's\nperipheral functions, allowing developers to easily write cross-platform\ncode.\n\n\n\n\n\n\n\n\nNewt\n\n\nIn order to provide all this func
 tionality, and operate in an\nextremely low resource environment, Mynewt provides a very fine-grained source\npackage management and build system tool, called \nnewt\n.\n\n\nYou can install \nnewt\n for \nMac OS\n or \nLinux\n.\n\n\n\n\nNewt Manager\n\n\nIn order to enable a user to communicate with remote instances of Mynewt OS and query, configure, and operate them, Mynewt provides an application tool called Newt Manager or \nnewtmgr\n.\n\n\nYou can install \nnewtmgr\n for \nMac OS\n or \nLinux\n.\n\n\n\n\nBuild your first Mynewt App with Newt\n\n\nWith the introductions out of the way, now is a good time to \nget set up and\nstarted\n with your first Mynewt application.\n\n\nHappy Hacking!", 
             "title": "toc"
         }, 
         {
@@ -122,12 +122,12 @@
         }, 
         {
             "location": "/os/introduction/#newt", 
-            "text": "In order to provide all this functionality, and operate in an\nextremely low resource environment, Mynewt provides a very fine-grained source\npackage management and build system tool, called  newt .  You can install and build  newt  for  Linux  or  Mac .", 
+            "text": "In order to provide all this functionality, and operate in an\nextremely low resource environment, Mynewt provides a very fine-grained source\npackage management and build system tool, called  newt .  You can install  newt  for  Mac OS  or  Linux .", 
             "title": "Newt"
         }, 
         {
             "location": "/os/introduction/#newt-manager", 
-            "text": "In order to enable a user to communicate with remote instances of Mynewt OS and query, configure, and operate them, Mynewt provides an application tool called Newt Manager or  newtmgr .  You can install and build  newtmgr  from source code on  Linux or Mac .", 
+            "text": "In order to enable a user to communicate with remote instances of Mynewt OS and query, configure, and operate them, Mynewt provides an application tool called Newt Manager or  newtmgr .  You can install  newtmgr  for  Mac OS  or  Linux .", 
             "title": "Newt Manager"
         }, 
         {
@@ -137,60 +137,15 @@
         }, 
         {
             "location": "/os/get_started/get_started/", 
-            "text": "Quick Start\n\n\nIf you are curious about Mynewt and want to get a quick feel for the project, you've come to the right place. We have two options for you:\n\n\n\n\nOption 1\n is the quick and easy way to get up and running with Mynewt. The Newt tool and build toolchains are all available in a single \nAll-in-one Docker Container\n that you can install on your laptop or computer.\n\n\n\n\nOption 2\n allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for developing embedded software (e.g. GNU toolchain) natively on your laptop or computer. You may want this if you are already familiar with such environments or are concerned about performance on your machine. Follow the instructions to \ninstall native tools\n and \ninstall cross tools for ARM\n if you prefer this option.\n\n\n\n\nYou can then proceed with the instructions on how to \n* \nCreate Your First Project\n - on simulated hardware.\n\n\nUpon successful 
 start, several tutorials await your eager attention!\n\n\n\n\nSend us an email on the dev@ mailing list if you have comments or suggestions!\n If you haven't joined the mailing list, you will find the links \nhere\n.", 
+            "text": "Quick Start\n\n\nIf you are curious about Mynewt and want to get a quick feel for the project, you've come to the right place. We have two options for you:\n\n\n\n\nOption 1\n is an easy, self-contained way to get up and running with Mynewt - but has limitations! The Newt tool and build toolchains are all available in a single \nAll-in-one Docker Container\n that you can install on your laptop or computer.\n\n\nHowever, this is not a long-term option since support is not likely for all features useful or critical to embedded systems development. For example, USB device mapping available in the Docker toolkit (used in this Option 1) is no longer available in the new Docker releases. The Docker option is also typically slower than the native install option. \n\n\n Therefore, the recommended option is Option 2 below. \n\n\n\n\nOption 2 (Recommended)\n allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for develop
 ing embedded software (e.g. GNU toolchain) natively on your laptop or computer. We have tried to make the process easy. For example, for the Mac OS we created brew formulas. \n\n\nYou want this option if you are familiar with such environments or are concerned about performance on your machine. Follow the instructions to \ninstall native tools\n and \ninstall cross tools for ARM\n if you prefer this option.\n\n\n\n\nYou can then proceed with the instructions on how to \n* \nCreate Your First Project\n - on simulated hardware.\n\n\nUpon successful start, several tutorials await your eager attention!\n\n\n\n\nSend us an email on the dev@ mailing list if you have comments or suggestions!\n If you haven't joined the mailing list, you will find the links \nhere\n.", 
             "title": "toc"
         }, 
         {
             "location": "/os/get_started/get_started/#quick-start", 
-            "text": "If you are curious about Mynewt and want to get a quick feel for the project, you've come to the right place. We have two options for you:   Option 1  is the quick and easy way to get up and running with Mynewt. The Newt tool and build toolchains are all available in a single  All-in-one Docker Container  that you can install on your laptop or computer.   Option 2  allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for developing embedded software (e.g. GNU toolchain) natively on your laptop or computer. You may want this if you are already familiar with such environments or are concerned about performance on your machine. Follow the instructions to  install native tools  and  install cross tools for ARM  if you prefer this option.   You can then proceed with the instructions on how to \n*  Create Your First Project  - on simulated hardware.  Upon successful start, several tutorials await your eager attention!
    Send us an email on the dev@ mailing list if you have comments or suggestions!  If you haven't joined the mailing list, you will find the links  here .", 
+            "text": "If you are curious about Mynewt and want to get a quick feel for the project, you've come to the right place. We have two options for you:   Option 1  is an easy, self-contained way to get up and running with Mynewt - but has limitations! The Newt tool and build toolchains are all available in a single  All-in-one Docker Container  that you can install on your laptop or computer.  However, this is not a long-term option since support is not likely for all features useful or critical to embedded systems development. For example, USB device mapping available in the Docker toolkit (used in this Option 1) is no longer available in the new Docker releases. The Docker option is also typically slower than the native install option.    Therefore, the recommended option is Option 2 below.    Option 2 (Recommended)  allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for developing embedded software (e.g. GNU toolchain) 
 natively on your laptop or computer. We have tried to make the process easy. For example, for the Mac OS we created brew formulas.   You want this option if you are familiar with such environments or are concerned about performance on your machine. Follow the instructions to  install native tools  and  install cross tools for ARM  if you prefer this option.   You can then proceed with the instructions on how to \n*  Create Your First Project  - on simulated hardware.  Upon successful start, several tutorials await your eager attention!   Send us an email on the dev@ mailing list if you have comments or suggestions!  If you haven't joined the mailing list, you will find the links  here .", 
             "title": "Quick Start"
         }, 
         {
-            "location": "/os/get_started/docker/", 
-            "text": "Everything You Need in a Docker Container\n\n\nDocker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.\n\n\nDocker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.\n\n\n\n\nInstall Docker\n\n\nInstall docker for your platform. \nMac OS X\n / \nWindows\n / \nLinux\n\n\nMac and Windows\n\n\nMac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support U
 SB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.\n\n\nMake sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.\n\n\nLinux\n\n\nThe docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.\n\n\n\n\nUse the newt wrapper script\n\n\nUse the newt wrapper script to invoke newt.  Create the following file, name it\n\nnewt\n, make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.\n\n\n#!/bin/bash\n\n\n\nif\n \n[\n \n$1\n \n=\n \ndebug\n \n]\n \n||\n \n[\n \n$1\n \n=\n \nrun\n \n]\n\n\nthen\n\n    \nti=\n-ti\n\n\nfi\n\n\ndocker run -e \nNEWT_US
 ER=\n$(\nid -u\n)\n -e \nNEWT_GROUP=\n$(\nid -g\n)\n -e \nNEWT_HOST=\n$(\nuname\n)\n \n$ti\n --rm --device\n=\n/dev/bus/usb --privileged -v \n$(pwd)\n:/workspace -w /workspace mynewt/newt:latest /newt \n$@\n\n\n\n\n\n\n\n\nNote 1:\n Remember to point to the correct subdirectory level when invoking \nnewt\n. For example, invoke it using \n../newt\n in the example below.\n\n\nuser@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj\n\nuser@~/dockertest/myproj$ ../newt version\n\nApache Newt (incubating) version: 0.8.0-b2\n\n\n\n\n\n\n\nNote 2:\n You can upgrade your container by running \ndocker pull mynewt/newt:latest\n when updates are made available.\n\n\n\n\nEnable USB2 Support for Mac or Windows\n\n\nIf you plan on loading your application on an actual device, do the steps below.\n\n\n\n\nInstall VirtualBox extension pack\n\n\nDocker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the \nVirtua
 lBox\n5.0.16 Oracle VM VirtualBox Extension\nPack\n\nand double click to install\n\n\n\n\nEnable USB2 and select your device\n\n\n\n\n\n\nThe \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:\n\n\n\n\nRun the command \ndocker-machine stop default\n in the terminal window or\n\n\nUse the VirtualBox UI. Right click on \ndefault\n -\n Close -\n Power Off\n\n\n\n\n\n\n\n\nEnable USB2 using the VirtualBox UI. Select the \"default\"\n  VM-\nSettings-\nPorts-\nUSB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.\n\n\n\n\n\n\n\n\n\n\nRestart the \"default\" VM. You have two options:\n\n\nRun \ndocker-machine start default\n in the terminal window or \n\n\nUse the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".\n\n\n\n\n\n\n\n\n\n\nNote 3\n: When working with ac
 tual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be able to see the board correctly. For example, you may see an error message like \nError: unable to find CMSIS-DAP device\n when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
-            "title": "Docker Container Option"
-        }, 
-        {
-            "location": "/os/get_started/docker/#everything-you-need-in-a-docker-container", 
-            "text": "Docker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.  Docker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.", 
-            "title": "Everything You Need in a Docker Container"
-        }, 
-        {
-            "location": "/os/get_started/docker/#install-docker", 
-            "text": "Install docker for your platform.  Mac OS X  /  Windows  /  Linux", 
-            "title": "Install Docker"
-        }, 
-        {
-            "location": "/os/get_started/docker/#mac-and-windows", 
-            "text": "Mac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support USB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.  Make sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.", 
-            "title": "Mac and Windows"
-        }, 
-        {
-            "location": "/os/get_started/docker/#linux", 
-            "text": "The docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.", 
-            "title": "Linux"
-        }, 
-        {
-            "location": "/os/get_started/docker/#use-the-newt-wrapper-script", 
-            "text": "Use the newt wrapper script to invoke newt.  Create the following file, name it newt , make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.  #!/bin/bash  if   [   $1   =   debug   ]   ||   [   $1   =   run   ]  then \n     ti= -ti  fi \n\ndocker run -e  NEWT_USER= $( id -u )  -e  NEWT_GROUP= $( id -g )  -e  NEWT_HOST= $( uname )   $ti  --rm --device = /dev/bus/usb --privileged -v  $(pwd) :/workspace -w /workspace mynewt/newt:latest /newt  $@    Note 1:  Remember to point to the correct subdirectory level when invoking  newt . For example, invoke it using  ../newt  in the example below.  user@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj user@~/dockertest/myproj$ ../newt version Apache Newt (incubating) version: 0.8.0-b2   Note 2:  You can upgrade your container by running  docker pull mynewt/newt:latest  when updates are
  made available.", 
-            "title": "Use the newt wrapper script"
-        }, 
-        {
-            "location": "/os/get_started/docker/#enable-usb2-support-for-mac-or-windows", 
-            "text": "If you plan on loading your application on an actual device, do the steps below.", 
-            "title": "Enable USB2 Support for Mac or Windows"
-        }, 
-        {
-            "location": "/os/get_started/docker/#install-virtualbox-extension-pack", 
-            "text": "Docker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the  VirtualBox\n5.0.16 Oracle VM VirtualBox Extension\nPack \nand double click to install", 
-            "title": "Install VirtualBox extension pack"
-        }, 
-        {
-            "location": "/os/get_started/docker/#enable-usb2-and-select-your-device", 
-            "text": "The \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:   Run the command  docker-machine stop default  in the terminal window or  Use the VirtualBox UI. Right click on  default  -  Close -  Power Off     Enable USB2 using the VirtualBox UI. Select the \"default\"\n  VM- Settings- Ports- USB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.      Restart the \"default\" VM. You have two options:  Run  docker-machine start default  in the terminal window or   Use the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".      Note 3 : When working with actual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be abl
 e to see the board correctly. For example, you may see an error message like  Error: unable to find CMSIS-DAP device  when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
-            "title": "Enable USB2 and select your device"
-        }, 
-        {
             "location": "/os/get_started/native_tools/", 
             "text": "Installing Native Mynewt Tools\n\n\nThis page shows how to install tools for native Mynewt targets (simulated targets on your laptop/computer) without using a Docker container. In other words, it allows you to run Mynewt OS as a native application on your Mac or Linux machine to simulate a target and use the Newt tool running natively on your machine to manage the simulated target. It also allows you to run the test suites for all packages not requiring HW support. You may choose to do this instead of using the build toolchain and Newt tool available in a Docker container.\n\n\nThis page provides guidance for MAC and Linux. See the relevant sections below.\n\n\n\n\nSet up toolchain for Mac\n\n\nInstall Brew\n\n\nIf you have not already installed Homebrew from the \n\nnewt\n tutorials pages\n, install it. \n\n\n\n\nInstall gcc/libc\n\n\nOS X ships with a C compiler called Clang.  To build applications for the Mynewt simulator with, a different compiler is used as
  default: gcc.\n\n\n$ brew install gcc\n...\n...\n==\n Summary\n\ud83c\udf7a  /usr/local/Cellar/gcc/5.2.0: 1353 files, 248M\n\n\n\n\n\n\n\nCheck the gcc version you have installed (either using brew or previously installed). The brew-installed version can be checked using \nbrew list gcc\n. The default compiler.yml configuration file in Mynewt expects version 5.x for Mac users, so if the installed version is 6.x and you wish to continue with this newer version, modify the \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n file to change the default \ngcc-5\n defined there to \ngcc-6\n. In other words, replace the lines shown highlighted below:\n\n\n# OS X.\n\ncompiler.path.cc.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5\n\n\ncompiler.path.as.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5 -x assembler-with-cpp\n\n\ncompiler.path.objdump.DARWIN.OVERWRITE: \ngobjdump\n\ncompiler.path.objsize.DARWIN.OVERWRITE: \nobjsize\n\ncompiler.path.objcopy.DARWIN.OVERWRITE: \ngobjc
 opy\n\n\n\n\n\n\nwith the following:\n\n\ncompiler.path.cc.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-6\n\ncompiler.path.as.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-6 -x assembler-with-cpp\u201d\n\n\n\n\n\n\n\nIn case you wish to use Clang, you can change your \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n to use Clang. Delete the gcc-5 DARWIN.OVERWRITE lines highlighted below.\n\n\n# OS X.\n\ncompiler.path.cc.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5\n\n\ncompiler.path.as.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5 -x assembler-with-cpp\n\n\ncompiler.path.objdump.DARWIN.OVERWRITE: \ngobjdump\n\ncompiler.path.objsize.DARWIN.OVERWRITE: \nobjsize\n\ncompiler.path.objcopy.DARWIN.OVERWRITE: \ngobjcopy\n\n\n\n\n\n\n\n\nNOTE:\n Both the newer gcc 6.x and Clang report a few warnings but they can be ignored.\n\n\n\n\nFURTHER NOTE:\n Mynewt developers mostly use gcc 5.x for sim builds; so it may take a little while to fix issues reported by the newer compiler. One option
  is to \ndisable warnings\n. To do that, remove the \n-Werror\n flag as an option for the compiler in the  \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n file as shown below. \n\n\ncompiler.flags.base: \n\n\n    -m32 -Wall -ggdb\n\n\n\n\n\nYou may alternatively choose to \nspecify the precise warnings to ignore\n depending on the error thrown by the compiler. For example, if you see a \n[-Werror=misleading-indentation]\n error while building the sim image, add \n-Wno-misleading-indentation]\n as a compiler flag in the same line from the \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n file.\n\n\ncompiler.flags.base: \n\n\n    -m32 -Wall -Werror -ggdb -Wno-misleading-indentation\n\n\n\n\n\nA third option is to simply \ndowngrade to gcc 5.x\n.\n\n\n\n\nInstall gdb\n\n\n$ brew install gdb\n...\n...\n==\n Summary\n\ud83c\udf7a  /usr/local/Cellar/gdb/7.10.1: XXX files,YYM\n\n\n\n\n\n\n\nNOTE:\n When running a program with gdb, y
 ou may need to sign your gdb\nexecutable.  \nThis page\n\nshows a recipe for gdb signing. Alternately you can skip this step and\ncontinue without the ability to debug your mynewt application on your PC.*\n\n\n\n\nSet up toolchain for Linux\n\n\nThe below procedure can be used to set up a Debian-based Linux system (e.g.,\nUbuntu).  If you are running a different Linux distribution, you will need to\nsubstitute invocations of \napt-get\n in the below steps with the package manager\nthat your distro uses.\n\n\n\n\nInstall gcc/libc that will produce 32-bit executables:\n\n\n$ sudo apt-get install gcc-multilib libc6-i386\n\n\n\n\n\n\n\nInstall gdb\n\n\n$ sudo apt-get install gdb\n\nReading package lists... Done\nBuilding dependency tree       \nReading state information... Done\nSuggested packages:\n  gdb-doc gdbserver\nThe following NEW packages will be installed:\n  gdb\n...\nProcessing triggers for man-db (2.6.7.1-1ubuntu1) ...\nSetting up gdb (7.7.1-0ubuntu5~14.04.2) ...\n\n\n\n\n\n
 \n\nAt this point you have installed all the necessary software to build and test code on a simluator running on your Mac or Linux. Proceed to the \nCreate Your First Project\n section.", 
             "title": "toc"
@@ -237,43 +192,33 @@
         }, 
         {
             "location": "/newt/install/newt_mac/", 
-            "text": "Install newt tool on your Mac\n\n\nGetting your Mac Ready\n\n\nIf you want to build the \nnewt\n tool from its source code, follow the following steps:\n\n\n\n\n1. Install Homebrew on your Mac OS X\n\n\n\n\nDo 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.\n\n\n\n\n        $ ruby -e \n$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\n\n\n\n\n\n\nAlternatively, you can just extract (or \ngit clone\n) Homebrew and install it to \n/usr/local\n.\n\n\n\n\n2. Install Go, the programming language\n\n\n\n\n\n\nGo 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. \n\n\n\n\n\n\nsrc contains Go source files organized into packages (one package per directory),\n\n\n\n\n\n\npkg contains package objects, and\n\n
 \n\n\n\n\nbin contains executable commands.\n\n\n\n\n\n\nThe 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 \nnewt\n tool repository.\n\n\n\n\n\n\n\n\n        $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`\n\n\n\n\n\n(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.)\n\n\n\n\n        $ vi ~/.bash_profile\n        $ source ~/.bash_profile\n\n\n\n\n\n\n\n\n\nNext, using \nbrew\n, 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 \nnewt\n rep
 o into your local Go environment.\n\n\n\n\n        $ brew install go\n        ==\n \n        ...\n        ... \n        ==\n *Summary*\n        \ud83c\udf7a  /usr/local/Cellar/go/1.5.1: 5330 files, 273M\n\n\n\n\n\nAlternatively, you can download the Go package directly from (https://golang.org/dl/) instead of brewing it. Install it in /usr/local directory.\n\n\n\n\n3. Create local repository\n\n\n\n\nUse 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.\n\n\n\n\n        $ go get mynewt.apache.org/newt/...\n\n\n\n\n\n\n\nCheck that newt.go is in place.\n\n\n\n\n        $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml\n\n\n\n\n\n\n\n4. Build the Newt tool\n\n\n\n\nUse Go to run the newt.go program to build the \nnewt\n tool. The command \ngo install\n compiles and writes 
 the resulting executable to an output file named \nnewt\n, which is then installed, along with its dependencies, in $GOPATH/bin.\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\n\n\n\n\nAt this point, you can try using \nnewt\n. 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'.\n\n\n\n\n(Note: If you are going to be modifying the \nnewt\n 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 \nexport newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"\n in your .bash_profile and execute it by calling \n$newt\n at the prompt instead of \nnewt\n. Essentially, \n$newt\n calls \ngo run\n which runs the compiled binary directly without producing an executable. Don't forget to reload the 
 updated bash profile by typing \nsource ~/.bash_profile\n at the prompt! )\n\n\n        $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          newt [command]\n\n        Examples:\n          newt\n          newt help [\ncommand-name\n]\n            For help on \ncommand-name\n.  If not specified, print this message.\n\n        Available
  Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug \ntarget\n\n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure, and query targets\n          test         Executes unit tests for one or more packages\n          upgrade      Upgrade project dependencies\n          vals         Display valid values f
 or the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default \nWARN\n)\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don\nt output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use \nnewt [command] --help\n for more information about a comma\n\n\n\n\n\n\n\n5. Updating the Newt tool\n\n\n\n\nYou will update the newt tool in the same place as you initially installed the newt tool.\n\n\nStart by updating the git repository of the newt tool (you can change to a different branch using git checkout [branch] if you need to)\n\n\nThen update each of the tools newt, newtmgr a
 nd newtvm as needed\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\nThat should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
+            "text": "Installing Newt on Mac OS\n\n\nNewt is supported on Mac OS X 64 bit platforms and has been tested on Mac OS 10.9 and higher.\n\n\nThis page shows you how to install the following versions of newt:\n\n\n\n\nThe latest stable release version (1.0.0) \n\n\nThe latest from the master branch (unstable)\n\n\n\n\nNote:\n If you would like to contribute to the newt tool, see \nSetting Up Go Environment to Contribute to Newt and Newtmgr Tools\n.\n\n\nInstalling Homebrew\n\n\nIf you do not have Homebrew installed, run the following command. You will be prompted for your sudo password.\n\n\n$ ruby -e \n$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\n\n\n\n\n\n\nYou can also extract (or \ngit clone\n) Homebrew and install it to /usr/local.\n\n\n\n\nInstalling Newt\n\n\nAdd the \n runtimeco/homebrew-mynewt \n tap:\n\n\n$brew tap runtimeco/homebrew-mynewt\n$brew update\n\n\n\n\n\n\n\nInstalling the Latest Release Version of Newt\n\n\nInstall t
 he latest stable release version (1.0.0) of newt:\n\n\n$brew install mynewt-newt\n==\n Installing mynewt-newt from runtimeco/mynewt\n==\n Downloading https://github.com/runtimeco/binary-releases/raw/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.bottle.tar.gz\n==\n Downloading from https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.\n######################################################################## 100.0%\n==\n Pouring mynewt-newt-1.0.0.mavericks.bottle.tar.gz\n\ud83c\udf7a  /usr/local/Cellar/mynewt-newt/1.0.0: 3 files, 10.4MB\n\n\n\n\n\n\n\nNote:\n 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.\n\n\n\nCheck that you are using the installed version of newt:\n\n\n$which newt\n/usr/local/bin/newt\n$ls -l /usr/local/bin/newt\nlrwxr-xr-x
   1 user  staff  36 Apr 15 08:18 /usr/local/bin/newt -\n ../Cellar/mynewt-newt/1.0.0/bin/newt\n$newt version\nApache Newt (incubating) version: 1.0.0\n\n\n\n\n\nNote:\n If you previously built newt from source and the output of \nwhich newt\n shows \"$GOPATH/bin/newt\", you will need to move \"$GOPATH/bin\"  after \"/usr/local/bin\" in your $PATH.\n\n\n\nGet information about newt: \n\n\n$newt help\nNewt allows you to create your own embedded application based on the Mynewt \noperating system. Newt provides both build and package management in a single \ntool, which allows you to compose an embedded application, and set of \nprojects, and then build the necessary artifacts from those projects. For more \ninformation on the Mynewt operating system, please visit \nhttps://mynewt.apache.org/. \n\nPlease use the newt help command, and specify the name of the command you want \nhelp for, for help on how to use a specific command\n\nUsage:\n  newt [flags]\n  newt [command]\n\nExamples:\n 
  newt\n  newt help [\ncommand-name\n]\n    For help on \ncommand-name\n.  If not specified, print this message.\n\nAvailable Commands:\n  build        Build one or more targets\n  clean        Delete build artifacts for one or more targets\n  create-image Add image header to target binary\n  debug        Open debugger session to target\n  info         Show project info\n  install      Install project dependencies\n  load         Load built target to board\n  mfg          Manufacturing flash image commands\n  new          Create a new project\n  pkg          Create and manage packages in the current workspace\n  run          build/create-image/download/debug \ntarget\n\n  size         Size of target components\n  sync         Synchronize project dependencies\n  target       Commands to create, delete, configure, and query targets\n  test         Executes unit tests for one or more packages\n  upgrade      Upgrade project dependencies\n  vals         Display valid values for the speci
 fied element type(s)\n  version      Display the Newt version number\n\nFlags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default \nWARN\n)\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don\nt output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse \nnewt [command] --help\n for more information about a command.\n\n\n\n\n\n\n\nInstalling Newt from the Master Branch\n\n\nWe 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. \n\n\n Notes: \n\n\n\n\nThe master branch may be unstable.\n\n\nThis installation will install the latest version of Go on your computer, if it is not installe
 d, and compile newt locally. \n\n\n\n\n\nIf you previously installed newt using brew, unlink the current version:\n\n\n$brew unlink mynewt-newt\n\n\n\n\n\n\nInstall the latest unstable version of newt from the master branch:\n\n\n$brew install --HEAD mynewt-newt\n==\n Installing mynewt-newt from runtimeco/mynewt\n==\n Cloning https://github.com/apache/incubator-mynewt-newt.git\nCloning into \nUsers/\nusername\n/Library/Caches/Homebrew/mynewt-newt--git\n...\nremote: Counting objects: 623, done.\nremote: Compressing objects: 100% (501/501), done.\nremote: Total 623 (delta 154), reused 323 (delta 84), pack-reused 0\nReceiving objects: 100% (623/623), 1.10 MiB | 0 bytes/s, done.\nResolving deltas: 100% (154/154), done.\n==\n Checking out branch master\n==\n go install\n\ud83c\udf7a  /usr/local/Cellar/mynewt-newt/HEAD-409f7d3: 3 files, 10.4MB, built in 10 seconds\n$newt version\nApache Newt (incubating) version: 1.0.0-dev\n\n\n\n\n\n\nTo switch back to the stable release version (1.0.0) 
 of newt, you can run:\n\n\n$brew switch mynewt-newt 1.0.0\nCleaning /usr/local/Cellar/mynewt-newt/1.0.0\nCleaning /usr/local/Cellar/mynewt-newt/HEAD-409f7d3\n1 links created for /usr/local/Cellar/mynewt-newt/1.0.0\n$newt version\nApache Newt (incubating) version: 1.0.0", 
             "title": "Install Newt on Mac"
         }, 
         {
-            "location": "/newt/install/newt_mac/#install-newt-tool-on-your-mac", 
-            "text": "", 
-            "title": "Install newt tool on your Mac"
-        }, 
-        {
-            "location": "/newt/install/newt_mac/#getting-your-mac-ready", 
-            "text": "If you want to build the  newt  tool from its source code, follow the following steps:", 
-            "title": "Getting your Mac Ready"
-        }, 
-        {
-            "location": "/newt/install/newt_mac/#1-install-homebrew-on-your-mac-os-x", 
-            "text": "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.           $ ruby -e  $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)   Alternatively, you can just extract (or  git clone ) Homebrew and install it to  /usr/local .", 
-            "title": "1. Install Homebrew on your Mac OS X"
+            "location": "/newt/install/newt_mac/#installing-newt-on-mac-os", 
+            "text": "Newt is supported on Mac OS X 64 bit platforms and has been tested on Mac OS 10.9 and higher.  This page shows you how to install the following versions of newt:   The latest stable release version (1.0.0)   The latest from the master branch (unstable)   Note:  If you would like to contribute to the newt tool, see  Setting Up Go Environment to Contribute to Newt and Newtmgr Tools .", 
+            "title": "Installing Newt on Mac OS"
         }, 
         {
-            "location": "/newt/install/newt_mac/#2-install-go-the-programming-language", 
-            "text": "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.     src contains Go source files organized into packages (one package per directory),    pkg contains package objects, and    bin contains executable commands.    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  newt  tool repository.             $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`  (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.)           $ vi ~/.bash_profile\n        $ source ~/.bash_profile   
  Next, using  brew , 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  newt  repo into your local Go environment.           $ brew install go\n        ==  \n        ...\n        ... \n        ==  *Summary*\n        \ud83c\udf7a  /usr/local/Cellar/go/1.5.1: 5330 files, 273M  Alternatively, you can download the Go package directly from (https://golang.org/dl/) instead of brewing it. Install it in /usr/local directory.", 
-            "title": "2. Install Go, the programming language"
+            "location": "/newt/install/newt_mac/#installing-homebrew", 
+            "text": "If you do not have Homebrew installed, run the following command. You will be prompted for your sudo password.  $ ruby -e  $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)   You can also extract (or  git clone ) Homebrew and install it to /usr/local.", 
+            "title": "Installing Homebrew"
         }, 
         {
-            "location": "/newt/install/newt_mac/#3-create-local-repository", 
-            "text": "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.           $ go get mynewt.apache.org/newt/...   Check that newt.go is in place.           $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml", 
-            "title": "3. Create local repository"
+            "location": "/newt/install/newt_mac/#installing-newt", 
+            "text": "Add the   runtimeco/homebrew-mynewt   tap:  $brew tap runtimeco/homebrew-mynewt\n$brew update", 
+            "title": "Installing Newt"
         }, 
         {
-            "location": "/newt/install/newt_mac/#4-build-the-newt-tool", 
-            "text": "Use Go to run the newt.go program to build the  newt  tool. The command  go install  compiles and writes the resulting executable to an output file named  newt , which is then installed, along with its dependencies, in $GOPATH/bin.           $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm    At this point, you can try using  newt . 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'.   (Note: If you are going to be modifying the  newt  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  export newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"  in your .bash_profile and execute it by calling  $newt  at the prompt instead of  newt . Essentially,  $newt  calls  go run  which runs the compile
 d binary directly without producing an executable. Don't forget to reload the updated bash profile by typing  source ~/.bash_profile  at the prompt! )          $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          newt [command]\n\n        Examples:\n          newt\n          newt help [ command-name ]\n            For help on  comman
 d-name .  If not specified, print this message.\n\n        Available Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug  target \n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure, and query targets\n          test         Executes unit tests for one or more packages\n          upgrade      Upgrade p
 roject dependencies\n          vals         Display valid values for the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default  WARN )\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don t output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use  newt [command] --help  for more information about a comma", 
-            "title": "4. Build the Newt tool"
+            "location": "/newt/install/newt_mac/#installing-the-latest-release-version-of-newt", 
+            "text": "Install the latest stable release version (1.0.0) of newt:  $brew install mynewt-newt\n==  Installing mynewt-newt from runtimeco/mynewt\n==  Downloading https://github.com/runtimeco/binary-releases/raw/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.bottle.tar.gz\n==  Downloading from https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.\n######################################################################## 100.0%\n==  Pouring mynewt-newt-1.0.0.mavericks.bottle.tar.gz\n\ud83c\udf7a  /usr/local/Cellar/mynewt-newt/1.0.0: 3 files, 10.4MB   Note:  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.  \nCheck that you are using the installed version of newt:  $which newt\n/usr/local/bin/newt\n$ls -l /usr/local/bin/newt\nlrwxr-xr-x
   1 user  staff  36 Apr 15 08:18 /usr/local/bin/newt -  ../Cellar/mynewt-newt/1.0.0/bin/newt\n$newt version\nApache Newt (incubating) version: 1.0.0  Note:  If you previously built newt from source and the output of  which newt  shows \"$GOPATH/bin/newt\", you will need to move \"$GOPATH/bin\"  after \"/usr/local/bin\" in your $PATH.  \nGet information about newt:   $newt help\nNewt allows you to create your own embedded application based on the Mynewt \noperating system. Newt provides both build and package management in a single \ntool, which allows you to compose an embedded application, and set of \nprojects, and then build the necessary artifacts from those projects. For more \ninformation on the Mynewt operating system, please visit \nhttps://mynewt.apache.org/. \n\nPlease use the newt help command, and specify the name of the command you want \nhelp for, for help on how to use a specific command\n\nUsage:\n  newt [flags]\n  newt [command]\n\nExamples:\n  newt\n  newt help [ c
 ommand-name ]\n    For help on  command-name .  If not specified, print this message.\n\nAvailable Commands:\n  build        Build one or more targets\n  clean        Delete build artifacts for one or more targets\n  create-image Add image header to target binary\n  debug        Open debugger session to target\n  info         Show project info\n  install      Install project dependencies\n  load         Load built target to board\n  mfg          Manufacturing flash image commands\n  new          Create a new project\n  pkg          Create and manage packages in the current workspace\n  run          build/create-image/download/debug  target \n  size         Size of target components\n  sync         Synchronize project dependencies\n  target       Commands to create, delete, configure, and query targets\n  test         Executes unit tests for one or more packages\n  upgrade      Upgrade project dependencies\n  vals         Display valid values for the specified element type(s)\n  vers
 ion      Display the Newt version number\n\nFlags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default  WARN )\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don t output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse  newt [command] --help  for more information about a command.", 
+            "title": "Installing the Latest Release Version of Newt"
         }, 
         {
-            "location": "/newt/install/newt_mac/#5-updating-the-newt-tool", 
-            "text": "You will update the newt tool in the same place as you initially installed the newt tool.  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)  Then update each of the tools newt, newtmgr and newtvm as needed           $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm  That should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
-            "title": "5. Updating the Newt tool"
+            "location": "/newt/install/newt_mac/#installing-newt-from-the-master-branch", 
+            "text": "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.    Notes:    The master branch may be unstable.  This installation will install the latest version of Go on your computer, if it is not installed, and compile newt locally.    \nIf you previously installed newt using brew, unlink the current version:  $brew unlink mynewt-newt  \nInstall the latest unstable version of newt from the master branch:  $brew install --HEAD mynewt-newt\n==  Installing mynewt-newt from runtimeco/mynewt\n==  Cloning https://github.com/apache/incubator-mynewt-newt.git\nCloning into  Users/ username /Library/Caches/Homebrew/mynewt-newt--git ...\nremote: Counting objects: 623, done.\nremote: Compressing objects: 100% (501/501), done.\nremote: Total 623 (delta 154), reused 323 (delta 84), pack-reused 0\nReceiving objects: 100% (623/623), 1.10 
 MiB | 0 bytes/s, done.\nResolving deltas: 100% (154/154), done.\n==  Checking out branch master\n==  go install\n\ud83c\udf7a  /usr/local/Cellar/mynewt-newt/HEAD-409f7d3: 3 files, 10.4MB, built in 10 seconds\n$newt version\nApache Newt (incubating) version: 1.0.0-dev  \nTo switch back to the stable release version (1.0.0) of newt, you can run:  $brew switch mynewt-newt 1.0.0\nCleaning /usr/local/Cellar/mynewt-newt/1.0.0\nCleaning /usr/local/Cellar/mynewt-newt/HEAD-409f7d3\n1 links created for /usr/local/Cellar/mynewt-newt/1.0.0\n$newt version\nApache Newt (incubating) version: 1.0.0", 
+            "title": "Installing Newt from the Master Branch"
         }, 
         {
             "location": "/newt/install/newt_linux/", 
@@ -356,6 +301,51 @@
             "title": "Install OpenOCD"
         }, 
         {
+            "location": "/os/get_started/docker/", 
+            "text": "Everything You Need in a Docker Container\n\n\nDocker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.\n\n\nDocker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.\n\n\n\n\nInstall Docker\n\n\nInstall docker for your platform. \nMac OS X\n / \nWindows\n / \nLinux\n\n\nMac and Windows\n\n\nMac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support U
 SB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.\n\n\nMake sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.\n\n\nLinux\n\n\nThe docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.\n\n\n\n\nUse the newt wrapper script\n\n\nUse the newt wrapper script to invoke newt.  Create the following file, name it\n\nnewt\n, make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.\n\n\n#!/bin/bash\n\n\n\nif\n \n[\n \n$1\n \n=\n \ndebug\n \n]\n \n||\n \n[\n \n$1\n \n=\n \nrun\n \n]\n\n\nthen\n\n    \nti=\n-ti\n\n\nfi\n\n\ndocker run -e \nNEWT_US
 ER=\n$(\nid -u\n)\n -e \nNEWT_GROUP=\n$(\nid -g\n)\n -e \nNEWT_HOST=\n$(\nuname\n)\n \n$ti\n --rm --device\n=\n/dev/bus/usb --privileged -v \n$(pwd)\n:/workspace -w /workspace mynewt/newt:latest /newt \n$@\n\n\n\n\n\n\n\n\nNote 1:\n Remember to point to the correct subdirectory level when invoking \nnewt\n. For example, invoke it using \n../newt\n in the example below.\n\n\nuser@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj\n\nuser@~/dockertest/myproj$ ../newt version\n\nApache Newt (incubating) version: 0.8.0-b2\n\n\n\n\n\n\n\nNote 2:\n You can upgrade your container by running \ndocker pull mynewt/newt:latest\n when updates are made available.\n\n\n\n\nEnable USB2 Support for Mac or Windows\n\n\nIf you plan on loading your application on an actual device, do the steps below.\n\n\n\n\nInstall VirtualBox extension pack\n\n\nDocker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the \nVirtua
 lBox\n5.0.16 Oracle VM VirtualBox Extension\nPack\n\nand double click to install\n\n\n\n\nEnable USB2 and select your device\n\n\n\n\n\n\nThe \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:\n\n\n\n\nRun the command \ndocker-machine stop default\n in the terminal window or\n\n\nUse the VirtualBox UI. Right click on \ndefault\n -\n Close -\n Power Off\n\n\n\n\n\n\n\n\nEnable USB2 using the VirtualBox UI. Select the \"default\"\n  VM-\nSettings-\nPorts-\nUSB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.\n\n\n\n\n\n\n\n\n\n\nRestart the \"default\" VM. You have two options:\n\n\nRun \ndocker-machine start default\n in the terminal window or \n\n\nUse the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".\n\n\n\n\n\n\n\n\n\n\nNote 3\n: When working with ac
 tual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be able to see the board correctly. For example, you may see an error message like \nError: unable to find CMSIS-DAP device\n when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
+            "title": "Docker Container Option"
+        }, 
+        {
+            "location": "/os/get_started/docker/#everything-you-need-in-a-docker-container", 
+            "text": "Docker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.  Docker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.", 
+            "title": "Everything You Need in a Docker Container"
+        }, 
+        {
+            "location": "/os/get_started/docker/#install-docker", 
+            "text": "Install docker for your platform.  Mac OS X  /  Windows  /  Linux", 
+            "title": "Install Docker"
+        }, 
+        {
+            "location": "/os/get_started/docker/#mac-and-windows", 
+            "text": "Mac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support USB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.  Make sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.", 
+            "title": "Mac and Windows"
+        }, 
+        {
+            "location": "/os/get_started/docker/#linux", 
+            "text": "The docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.", 
+            "title": "Linux"
+        }, 
+        {
+            "location": "/os/get_started/docker/#use-the-newt-wrapper-script", 
+            "text": "Use the newt wrapper script to invoke newt.  Create the following file, name it newt , make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.  #!/bin/bash  if   [   $1   =   debug   ]   ||   [   $1   =   run   ]  then \n     ti= -ti  fi \n\ndocker run -e  NEWT_USER= $( id -u )  -e  NEWT_GROUP= $( id -g )  -e  NEWT_HOST= $( uname )   $ti  --rm --device = /dev/bus/usb --privileged -v  $(pwd) :/workspace -w /workspace mynewt/newt:latest /newt  $@    Note 1:  Remember to point to the correct subdirectory level when invoking  newt . For example, invoke it using  ../newt  in the example below.  user@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj user@~/dockertest/myproj$ ../newt version Apache Newt (incubating) version: 0.8.0-b2   Note 2:  You can upgrade your container by running  docker pull mynewt/newt:latest  when updates are
  made available.", 
+            "title": "Use the newt wrapper script"
+        }, 
+        {
+            "location": "/os/get_started/docker/#enable-usb2-support-for-mac-or-windows", 
+            "text": "If you plan on loading your application on an actual device, do the steps below.", 
+            "title": "Enable USB2 Support for Mac or Windows"
+        }, 
+        {
+            "location": "/os/get_started/docker/#install-virtualbox-extension-pack", 
+            "text": "Docker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the  VirtualBox\n5.0.16 Oracle VM VirtualBox Extension\nPack \nand double click to install", 
+            "title": "Install VirtualBox extension pack"
+        }, 
+        {
+            "location": "/os/get_started/docker/#enable-usb2-and-select-your-device", 
+            "text": "The \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:   Run the command  docker-machine stop default  in the terminal window or  Use the VirtualBox UI. Right click on  default  -  Close -  Power Off     Enable USB2 using the VirtualBox UI. Select the \"default\"\n  VM- Settings- Ports- USB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.      Restart the \"default\" VM. You have two options:  Run  docker-machine start default  in the terminal window or   Use the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".      Note 3 : When working with actual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be abl
 e to see the board correctly. For example, you may see an error message like  Error: unable to find CMSIS-DAP device  when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
+            "title": "Enable USB2 and select your device"
+        }, 
+        {
             "location": "/os/get_started/project_create/", 
             "text": "Create Your First Mynewt Project\n\n\nThis page shows how to create a Mynewt Project using the \nnewt\n command-line tool.\n\n\n\n\nPre-Requisites\n\n\n\n\nNewt:\n\n\nIf you have taken the Docker route, you have already installed Newt.\n\n\nIf you have taken the native install route, you have to ensure that you have installed the Newt tool following the instructions for \nMac\n or \nLinux\n as appropriate, and that the \nnewt\n command is in your system path. \n\n\n\n\n\n\nYou must have Internet connectivity to fetch remote Mynewt components.\n\n\nYou must \ninstall the compiler tools\n to \nsupport native compiling to build the project this tutorial creates.  \n\n\n\n\n\n\nNewt New\n\n\nChoose a project name. For this tutorial we will call this project \nmyproj\n.\nEnter the \nnewt new myproj\n command. \n\n\n$ newt new myproj\nDownloading project skeleton from apache/incubator-mynewt-blinky...\nInstalling skeleton in myproj...\nProject myproj successfully crea
 ted.\n\n\n\n\n\n\n\nNewt populates this new project with a base skeleton of a new Apache Mynewt \nproject.  It has the following structure. \n\n\nNote\n: If you do not have \ntree\n, install it by running \nbrew install tree\n.\n\n\n$ cd myproj\n$ tree \n.\n\u251c\u2500\u2500 DISCLAIMER\n\u251c\u2500\u2500 LICENSE\n\u251c\u2500\u2500 NOTICE\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 apps\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 blinky\n\u2502\u00a0\u00a0     \u251c\u2500\u2500 pkg.yml\n\u2502\u00a0\u00a0     \u2514\u2500\u2500 src\n\u2502\u00a0\u00a0         \u2514\u2500\u2500 main.c\n\u251c\u2500\u2500 project.yml\n\u2514\u2500\u2500 targets\n    \u251c\u2500\u2500 my_blinky_sim\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 pkg.yml\n    \u2502\u00a0\u00a0 \u2514\u2500\u2500 target.yml\n    \u2514\u2500\u2500 unittest\n        \u251c\u2500\u2500 pkg.yml\n        \u2514\u2500\u2500 target.yml\n\n6 directories, 11 files\n\n\n\n\n\n\n\nThe Newt tool has installed the base files for a
  project comprising the following:\n\n\n\n\nThe file \nproject.yml\n contains the repository list that the project uses to fetch\nits packages. Your project is a collection of repositories.  In this case, the project just\ncomprises the core mynewt repository.  Later you will add more repositories\nto include other mynewt components.\n\n\nThe file \napps/blinky/pkg.yml\n contains the description of your application\nand its package dependencies.\n\n\nA \ntarget\n directory containing \nmy_blinky_sim\n, a target descriptor used to\nbuild a version of myproj.  Use \nnewt target show\n to see available build \ntargets.\n\n\nA non-buildable target called \nunittest\n.  This is used internally by \nnewt\n and is not a formal build target.\n\n\n\n\nNOTE:\n The actual code and package files are not installed \n(except the template for \nmain.c\n).  See the next step for installing the packages.\n\n\nNOTE:\n By default newt uses the code in the master branch. This is the latest stable\ncode
  for newt. If you need to use a different branch, you can set this in the project.yml\nfile. \n\n\nrepository.apache-mynewt-core:\n    type: github\n    vers: 1-latest\n    user: apache\n    repo: incubator-mynewt-core\n\n\n\n\n\nChanging to 1-dev will put you on the develop branch. \nThe Develop Branch may not be stable and you may encounter bugs or other problems.\n\n\n\n\nNewt Install\n\n\nOnce you've switched into your new project's directory, the next step is to fetch\nany dependencies this project has.  By default, all Newt projects rely on a\nsingle remote repository, apache-mynewt-core.  The \nnewt install\n command will\nfetch this repository.\n\n\n$ newt install\napache-mynewt-core\n\n\n\n\n\nNOTE:\n \napache-mynewt-core\n may take a while to download.  To see progress,\nuse the \n-v\n (verbose) option to install. \n\n\n\n\nOnce \nnewt install\n has successfully finished, the contents of \napache-mynewt-core\n will have been downloaded into your local directory.  You can v
 iew them by issuing the following commands in the base directory of the new project. The actual output will depend on what is in the latest 'master' branch you have pulled from.\n\n\n$ tree -L 2 repos/apache-mynewt-core/\n\nrepos/apache-mynewt-core/\n\u251c\u2500\u2500 CODING_STANDARDS.md\n\u251c\u2500\u2500 DISCLAIMER\n\u251c\u2500\u2500 LICENSE\n\u251c\u2500\u2500 NOTICE\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 RELEASE_NOTES.md\n\u251c\u2500\u2500 apps\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blecent\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blehci\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleprph\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleprph_oic\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blesplit\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bletest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bletiny\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleuart\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fat2native\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ffs2native\n\u25
 02\u00a0\u00a0 \u251c\u2500\u2500 ocf_sample\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 slinky\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 slinky_oic\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 spitest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 splitty\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 testbench\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 timtest\n\u251c\u2500\u2500 boot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot_serial\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bootutil\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 split\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 split_app\n\u251c\u2500\u2500 compiler\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 arm-none-eabi-m0\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 arm-none-eabi-m4\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 gdbmacros\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mips\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 sim\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 sim-mips\n\u251c\u2500\u2500 crypto\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mbedtls\n\u25
 02\u00a0\u00a0 \u2514\u2500\u2500 tinycrypt\n\u251c\u2500\u2500 docs\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 doxygen.xml\n\u251c\u2500\u2500 encoding\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 base64\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cborattr\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 json\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 tinycbor\n\u251c\u2500\u2500 fs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 disk\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fatfs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fcb\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fs\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 nffs\n\u251c\u2500\u2500 hw\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bsp\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cmsis-core\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 drivers\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 hal\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mcu\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 scripts\n\u251c\u2500\u2500 kernel\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 os\n\u251c\u2500\u2500 libc\n\u2502\u00a0\u00a0 \u2514\u250
 0\u2500 baselibc\n\u251c\u2500\u2500 mgmt\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 imgmgr\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mgmt\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 newtmgr\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 oicmgr\n\u251c\u2500\u2500 net\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ip\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 nimble\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 oic\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 wifi\n\u251c\u2500\u2500 project.yml\n\u251c\u2500\u2500 repository.yml\n\u251c\u2500\u2500 sys\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 config\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 console\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 coredump\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 defs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 flash_map\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 id\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 log\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mfg\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 reboot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 shell\n\u2502\u00a0\u00a0 \u251c\u2
 500\u2500 stats\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 sysinit\n\u251c\u2500\u2500 targets\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 unittest\n\u251c\u2500\u2500 test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 crash_test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 flash_test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 runtest\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 testutil\n\u251c\u2500\u2500 time\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 datetime\n\u2514\u2500\u2500 util\n    \u251c\u2500\u2500 cbmem\n    \u251c\u2500\u2500 crc\n    \u2514\u2500\u2500 mem\n\n94 directories, 9 files\n\n\n\n\n\nAs you can see, the core of the Apache Mynewt operating system has been brought \ninto your local directory. \n\n\n\n\nTest the project's packages\n\n\nYou have already built your first basic project. You can ask Newt to execute the unit tests in a package. For example, to test the \nsys/config\n package in the \napache-mynewt-core\n repo, call newt as shown below.\n\n\n$ newt test @apache-mynewt-core/sys/config\
 nTesting package @apache-mynewt-core/sys/config/test-fcb\nCompiling bootutil_misc.c\nCompiling image_ec.c\nCompiling image_rsa.c\nCompiling image_validate.c\n\n    ...\n\nLinking ~/dev/myproj/bin/targets/unittest/sys_config_test-fcb/app/sys/config/test-fcb/sys_config_test-fcb.elf\nExecuting test: ~/dev/myproj/bin/targets/unittest/sys_config_test-fcb/app/sys/config/test-fcb/sys_config_test-fcb.elf\nTesting package @apache-mynewt-core/sys/config/test-nffs\nCompiling repos/apache-mynewt-core/encoding/base64/src/hex.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_cli.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_dirent.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_mkdir.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_mount.c\nCompiling repos/apache-mynewt-core/encoding/base64/src/base64.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_file.c\nCompiling repos/apache-mynewt-core/fs/disk/src/disk.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_nmgr.c\nCompiling repos/a
 pache-mynewt-core/fs/fs/src/fsutil.c\nCompiling repos/apache-mynewt-core/fs/nffs/src/nffs.c\n\n     ...\n\nLinking ~/dev/myproj/bin/targets/unittest/sys_config_test-nffs/app/sys/config/test-nffs/sys_config_test-nffs.elf\nExecuting test: ~/dev/myproj/bin/targets/unittest/sys_config_test-nffs/app/sys/config/test-nffs/sys_config_test-nffs.elf\nPassed tests: [sys/config/test-fcb sys/config/test-nffs]\nAll tests passed\n\n\n\n\n\nNOTE:\n If you've installed the latest gcc using homebrew on your Mac, you will likely be running gcc-6. Make sure you have adjusted the compiler.yml configuration to reflect that as noted in \nNative Install Option\n. You can choose to downgrade to gcc-5 in order to use the default gcc compiler configuration for MyNewt.\n\n\nNOTE:\n If you are running the standard gcc for 64-bit machines, it does not support 32-bit. In that case you will see compilation errors. You need to install multiboot gcc (e.g. gcc-multilib if you running on a 64-bit Ubuntu).\n\n\n$ brew 
 uninstall gcc-6\n$ brew link gcc-5\n\n\n\n\n\n\n\nTo test all the packages in a project, specify \nall\n instead of the package name.\n\n\n$ newt test all\nTesting package @apache-mynewt-core/boot/boot_serial/test\nCompiling repos/apache-mynewt-core/boot/boot_serial/test/src/boot_test.c\nCompiling repos/apache-mynewt-core/boot/boot_serial/test/src/testcases/boot_serial_setup.c\n\n     ...\n\nLinking ~/dev/myproj/bin/targets/unittest/boot_boot_serial_test/app/boot/boot_serial/test/boot_boot_serial_test.elf\n\n...lots of compiling and testing...\n\nLinking ~/dev/myproj/bin/targets/unittest/util_cbmem_test/app/util/cbmem/test/util_cbmem_test.elf\nExecuting test: ~/dev/myproj/bin/targets/unittest/util_cbmem_test/app/util/cbmem/test/util_cbmem_test.elf\nPassed tests: [boot/boot_serial/test boot/bootutil/test crypto/mbedtls/test encoding/base64/test encoding/cborattr/test encoding/json/test fs/fcb/test fs/nffs/test kernel/os/test net/ip/mn_socket/test net/nimble/host/test net/oic/test sys
 /config/test-fcb sys/config/test-nffs sys/flash_map/test sys/log/full/test util/cbmem/test]\nAll tests passed\n\n\n\n\n\n\n\nBuild the Project\n\n\nTo build and run your new application, simply issue the following command:\n\n\n$ newt build my_blinky_sim \nBuilding target targets/my_blinky_sim\nCompiling repos/apache-mynewt-core/hw/hal/src/hal_common.c\nCompiling repos/apache-mynewt-core/hw/drivers/uart/src/uart.c\nCompiling repos/apache-mynewt-core/hw/hal/src/hal_flash.c\nCompiling repos/apache-mynewt-core/hw/bsp/native/src/hal_bsp.c\nCompiling repos/apache-mynewt-core/hw/drivers/uart/uart_hal/src/uart_hal.c\nCompiling apps/blinky/src/main.c\n\n    ...\n\n\nArchiving sys_mfg.a\nArchiving sys_sysinit.a\nArchiving util_mem.a\nLinking ~/dev/myproj/bin/targets/my_blinky_sim/app/apps/blinky/blinky.elf\nTarget successfully built: targets/my_blinky_sim\n\n\n\n\n\n\n\nRun the Project\n\n\nYou can run the simulated version of your project and see the simulated LED\nblink. If you are using n
 ewt docker, use \nnewt run\n to run the simulated binary.\n\n\n$ newt run my_blinky_sim\nLoading app image into slot 1\n    ...\nDebugging ~/dev/myproj/bin/targets/my_blinky_sim/app/apps/blinky/blinky.elf\n    ...\nReading symbols from /bin/targets/my_blinky_sim/app/apps/blinky/blinky.elf...done.\n(gdb)\n\n\n\n\n\nType \nr\n at the \n(gdb)\n prompt to run the project. You will see an output indicating that the hal_gpio pin is toggling between 1 and 0 in a simulated blink.\n\n\nIf you natively install the toolchain, you can either use \nnewt run\n or call the binary directly. Generally, \nnewt run\n is the expected way to call things.\n\n\n$ ./bin/targets/my_blinky_sim/app/apps/blinky/blinky.elf\nhal_gpio set pin  1 to 0\n\n\n\n\n\n\n\nComplete\n\n\nCongratulations, you have created your first project!  The blinky application\nis not terribly exciting when it is run in the simulator, as there is no LED to\nblink.  Apache Mynewt has a lot more functionality than just running simulated
 \napplications.  It provides all the features you'll need to cross-compile your\napplication, run it on real hardware and develop a full featured application.\n\n\nIf you're interested in learning more, a good next step is to dig in to one of\nthe \ntutorials\n and get a Mynewt project running on real hardware.\n\n\nHappy Hacking!", 
             "title": "Create Your First Project"
@@ -1227,7 +1217,7 @@
         }, 
         {
             "location": "/os/tutorials/add_newtmgr/", 
-            "text": "Enabling Newt Manager in Your Application\n\n\n\nIn order for your application to communicate with the newtmgr tool and process Newt Manager commands, you must \nenable Newt Manager device management and the support to process Newt Manager commands \nin your application.  This tutorial explains how to add the support to your application.\n\n\nThis tutorial assumes that you have read the \nDevice Management with Newt Manager\n\nguide and are familiar with the \nnewtmgr\n and \noicmgr\n frameworks and all the options that are available \nto customize your application.\n\n\nThis tutorial shows you how to configure your application to:\n\n\n\n\nUse the newtmgr framework.\n\n\nUse serial transport to communicate with the newtmgr tool.\n\n\nSupport all Newt Manager commands.\n\n\n\n\nSee \nOther Configuration Options\n on how to customize your application.\n\n\n\n\nPrerequisites\n\n\nEnsure that you have met the following prerequisites before continuing with this tuto
 rial:\n\n\n\n\nInstall the \nnewt tool\n. \n\n\nInstall the \nnewtmgr tool\n.\n\n\nHave Internet connectivity to fetch remote Mynewt components.\n\n\nInstall the \ncompiler tools\n to \nsupport native compiling to build the project this tutorial creates.  \n\n\nHave a cable to establish a serial USB connection between the board and the laptop.\n\n\n\n\n\n\nUse an Existing Project\n\n\nWe assume that you have worked through at least some of the other tutorials and have an existing project.\nIn this example, we modify the \nble_tiny\n project to enable Newt Manager support. \nWe call our application \nmyble\n.  You can create the application using any name you choose. \n\n\nModify Package Dependencies and Configurations\n\n\nAdd the following packages to the \npkg.deps\n parameter in your target or application \npkg.yml\n file:\n\n\npkg.deps:\n    - mgmt/newtmgr\n    - mgmt/newtmgr/transport/nmgr_shell\n    - mgmt/imgmgr\n    - sys/log/full\n    - sys/stats/full\n    - sys/config\n   
  - test/crash_test\n    - test/runtest\n\n\n\n\n\nEach package provides the following Newt Manager functionality:\n\n\n\n\nmgmt/newtmgr\n: Supports the newtmgr framework and the \nNewt Manager \necho\n, \ntaskstats\n \nmpstats\n, \ndatetime\n, and \nreset\n commands.\n\n\nmgmt/newtmgr/transport/nmgr_shell\n: Supports serial transport.\n\n\nmgmt/imgmgr\n: Supports the \nnewtmgr image\n command \n\n\nsys/log/full\n : Supports the \nnewtmgr log\n command.\n\n\nsys/stats/full\n: Supports the \nnewtmgr stat\n command. \n\n\nsys/config\n: Supports the \nnewtmgr config\n command. \n\n\ntest/crash_test\n: Supports the \nnewtmgr crash\n command. \n\n\ntest/runtest\n: Supports the \nnewt run\n command.\n\n\n\n\nAdd the following configuration setting values to the \nsyscfg.vals\n parameter in the target or \napplication \nsyscfg.yml\n file:\n\n\nsyscfg.vals:\n    LOG_NEWTMGR: 1\n    STATS_NEWTMGR: 1\n    CONFIG_NEWTMGR: 1\n    CRASH_TEST_NEWTMGR: 1\n    RUNTEST_NEWTMGR: 1\n    SHELL_TASK: 1\n
 \n\n\n\n\nThe first five configuration settings enable support for the Newt Manager \nlog\n, \nstat\n, \nconfig\n, \ncrash\n, \nand \nrun\n commands. The \nSHELL_TASK\n setting enables the shell for serial transport.\n\n\nNote that you may need to override additional configuration settings that are specific to each package to customize the \npackage functionality.\n\n\n\n\nModify the Source\n\n\nBy default, the \nmgmt\n package uses the Mynewt default event queue to receive request events from the newtmgr tool. These events are processed in the context of the application main task. \n\n\nYou can specify a different event queue for the package to use.  If you choose to use a dedicated event queue, you must create a task to process events from this event queue.  The \nmgmt\n package executes and handles newtmgr request events in the context of this task.  The \nmgmt\n package exports the \nmgmt_evq_set()\n function that allows you to specify an event queue. \n\n\nThis example uses the
  Mynewt default event queue and you do not need to modify your application source.  \n\n\nIf you choose to use a different event queue, see \nEvents and Event Queues\n for details on how to initialize an event queue and create a task to process the events. You will also need to modify your \nmain.c\n to add the call to the \nmgmt_evq_set()\n function as follows:\n\n\nAdd the \nmgmt/mgmt.h\n header file: \n\n\n#include \nmgmt/mgmt.h\n\n\n\n\n\n\n\nAdd the call to specify the event queue. In the \nmain()\n function, scroll down to the  \nwhile (1)\n loop and add the following statement above the loop: \n\n\nmgmt_evq_set(\nmy_eventq)\n\n\n\n\n\nwhere \nmy_eventq\n is an event queue that you have initialized.\n\n\nBuild the Targets\n\n\nBuild the two targets as follows:\n\n\n$ newt build nrf52_boot\n\nsnip\n\nApp successfully built: ./bin/nrf52_boot/apps/boot/boot.elf\n$ newt build myble\nCompiling hci_common.c\nCompiling util.c\nArchiving nimble.a\nCompiling os.c\n\nsnip\n\n\n\n\n\n\n\
 n\nCreate the Application Image\n\n\nGenerate a signed application image for the \nmyble\n target. You can use any version number you choose.\n\n\n$ newt create-image myble 1.0.0\nApp image successfully generated: ./bin/makerbeacon/apps/bletiny/bletiny.img\nBuild manifest: ./bin/makerbeacon/apps/bletiny/manifest.json\n\n\n\n\n\n\n\nLoad the Image\n\n\nEnsure the USB connector is in place and the power LED on the board is lit. Turn the power switch on your board off, \nthen back on to reset the board after loading the image.\n\n\n$ newt load nrf52_boot\n$ newt load myble\n\n\n\n\n\nSet Up a Connection Profile\n\n\nThe newtmgr tool requires a connection profile in order to connect to your board. If you have not done so, \nfollow the \ninstructions\n for setting up your connection profile.\n\n\n\n\nConnecting with Your Application\n\n\nOnce you have a connection profile set up, you can connect to your device with \nnewtmgr -c myconn \ncommand\n to run commands in your application. \n\n
 \nIssue the \necho\n command to ensure that your application is communicating with the newtmgr tool:\n\n\n# newtmgr -c myconn echo hello\nhello\n\n\n\n\n\nTest your application to ensure that it can process a Newt Manager command that is supported by a different package.\nIssue the \nstat\n command to see the BLE stats. \n\n\nnewtmgr -c myconn stat ble_att\nReturn Code = 0\nStats Name: ble_att\n  prep_write_req_tx: 0\n  indicate_req_tx: 0\n  write_rsp_tx: 0\n  find_info_req_tx: 0\n  read_rsp_rx: 0\n  read_group_type_rsp_tx: 0\n  indicate_req_rx: 0\n  find_type_value_rsp_tx: 0\n\n       ...\n\n  read_req_rx: 0\n  read_type_req_rx: 0\n  notify_req_tx: 0\n  mtu_rsp_tx: 0\n  find_type_value_req_rx: 0\n  read_blob_rsp_rx: 0\n  read_group_type_req_tx: 0\n  exec_write_req_tx: 0\n\n\n\n\n\nYour application is now able to communicate with the newtmgr tool.\n\n\nOther Configuration Options\n\n\nThis section explains how to customize your application to use other Newt Manager protocol options.
 \n\n\nNewtmgr Framework Transport Protocol Opti

<TRUNCATED>


[09/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/core_os/cputime/os_cputime_get32/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_get32/index.html b/develop/os/core_os/cputime/os_cputime_get32/index.html
index 23a56bd..852ba00 100644
--- a/develop/os/core_os/cputime/os_cputime_get32/index.html
+++ b/develop/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>
   
   

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/core_os/cputime/os_cputime_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_init/index.html b/develop/os/core_os/cputime/os_cputime_init/index.html
index 68d1434..244ebb9 100644
--- a/develop/os/core_os/cputime/os_cputime_init/index.html
+++ b/develop/os/core_os/cputime/os_cputime_init/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/develop/os/core_os/cputime/os_cputime_nsecs_to_ticks/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_nsecs_to_ticks/index.html b/develop/os/core_os/cputime/os_cputime_nsecs_to_ticks/index.html
index 75c87e9..75b2dbe 100644
--- a/develop/os/core_os/cputime/os_cputime_nsecs_to_ticks/index.html
+++ b/develop/os/core_os/cputime/os_cputime_nsecs_to_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/develop/os/core_os/cputime/os_cputime_ticks_to_nsecs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_ticks_to_nsecs/index.html b/develop/os/core_os/cputime/os_cputime_ticks_to_nsecs/index.html
index b7fbabc..1576d93 100644
--- a/develop/os/core_os/cputime/os_cputime_ticks_to_nsecs/index.html
+++ b/develop/os/core_os/cputime/os_cputime_ticks_to_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/develop/os/core_os/cputime/os_cputime_ticks_to_usecs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_ticks_to_usecs/index.html b/develop/os/core_os/cputime/os_cputime_ticks_to_usecs/index.html
index 77b38de..9dea34a 100644
--- a/develop/os/core_os/cputime/os_cputime_ticks_to_usecs/index.html
+++ b/develop/os/core_os/cputime/os_cputime_ticks_to_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/develop/os/core_os/cputime/os_cputime_timer_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_timer_init/index.html b/develop/os/core_os/cputime/os_cputime_timer_init/index.html
index 01eff93..413a287 100644
--- a/develop/os/core_os/cputime/os_cputime_timer_init/index.html
+++ b/develop/os/core_os/cputime/os_cputime_timer_init/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/develop/os/core_os/cputime/os_cputime_timer_relative/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_timer_relative/index.html b/develop/os/core_os/cputime/os_cputime_timer_relative/index.html
index 87d53bb..520f9a3 100644
--- a/develop/os/core_os/cputime/os_cputime_timer_relative/index.html
+++ b/develop/os/core_os/cputime/os_cputime_timer_relative/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/develop/os/core_os/cputime/os_cputime_timer_start/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_timer_start/index.html b/develop/os/core_os/cputime/os_cputime_timer_start/index.html
index 636eaaa..ab453db 100644
--- a/develop/os/core_os/cputime/os_cputime_timer_start/index.html
+++ b/develop/os/core_os/cputime/os_cputime_timer_start/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/develop/os/core_os/cputime/os_cputime_timer_stop/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_timer_stop/index.html b/develop/os/core_os/cputime/os_cputime_timer_stop/index.html
index 6e181b0..08682e7 100644
--- a/develop/os/core_os/cputime/os_cputime_timer_stop/index.html
+++ b/develop/os/core_os/cputime/os_cputime_timer_stop/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/develop/os/core_os/cputime/os_cputime_usecs_to_ticks/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_usecs_to_ticks/index.html b/develop/os/core_os/cputime/os_cputime_usecs_to_ticks/index.html
index 2cfff13..4542702 100644
--- a/develop/os/core_os/cputime/os_cputime_usecs_to_ticks/index.html
+++ b/develop/os/core_os/cputime/os_cputime_usecs_to_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/develop/os/core_os/event_queue/event_queue/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/event_queue/index.html b/develop/os/core_os/event_queue/event_queue/index.html
index 97e36e1..f5e1f3e 100644
--- a/develop/os/core_os/event_queue/event_queue/index.html
+++ b/develop/os/core_os/event_queue/event_queue/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/develop/os/core_os/event_queue/os_eventq_designate/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_designate/index.html b/develop/os/core_os/event_queue/os_eventq_designate/index.html
index 083023d..ba47596 100644
--- a/develop/os/core_os/event_queue/os_eventq_designate/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_designate/index.html
@@ -734,7 +734,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/develop/os/core_os/event_queue/os_eventq_dflt_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_dflt_get/index.html b/develop/os/core_os/event_queue/os_eventq_dflt_get/index.html
index 0eca37a..43acd2f 100644
--- a/develop/os/core_os/event_queue/os_eventq_dflt_get/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_dflt_get/index.html
@@ -734,7 +734,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/develop/os/core_os/event_queue/os_eventq_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_get/index.html b/develop/os/core_os/event_queue/os_eventq_get/index.html
index 9483223..722779a 100644
--- a/develop/os/core_os/event_queue/os_eventq_get/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_get/index.html
@@ -734,7 +734,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/develop/os/core_os/event_queue/os_eventq_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_init/index.html b/develop/os/core_os/event_queue/os_eventq_init/index.html
index c93c515..f2da31a 100644
--- a/develop/os/core_os/event_queue/os_eventq_init/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_init/index.html
@@ -734,7 +734,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/develop/os/core_os/event_queue/os_eventq_inited/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_inited/index.html b/develop/os/core_os/event_queue/os_eventq_inited/index.html
index 1cd19af..b802002 100644
--- a/develop/os/core_os/event_queue/os_eventq_inited/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_inited/index.html
@@ -734,7 +734,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/develop/os/core_os/event_queue/os_eventq_put/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_put/index.html b/develop/os/core_os/event_queue/os_eventq_put/index.html
index 4f8a0a6..c9cb8b3 100644
--- a/develop/os/core_os/event_queue/os_eventq_put/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_put/index.html
@@ -734,7 +734,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/develop/os/core_os/event_queue/os_eventq_remove/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_remove/index.html b/develop/os/core_os/event_queue/os_eventq_remove/index.html
index 7e28166..2c50d87 100644
--- a/develop/os/core_os/event_queue/os_eventq_remove/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_remove/index.html
@@ -734,7 +734,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/develop/os/core_os/event_queue/os_eventq_run/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/event_queue/os_eventq_run/index.html b/develop/os/core_os/event_queue/os_eventq_run/index.html
index 7abfd0e..f4d090e 100644
--- a/develop/os/core_os/event_queue/os_eventq_run/index.html
+++ b/develop/os/core_os/event_queue/os_eventq_run/index.html
@@ -734,7 +734,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/develop/os/core_os/heap/heap/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/heap/heap/index.html b/develop/os/core_os/heap/heap/index.html
index d73849e..9141864 100644
--- a/develop/os/core_os/heap/heap/index.html
+++ b/develop/os/core_os/heap/heap/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/develop/os/core_os/heap/os_free/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/heap/os_free/index.html b/develop/os/core_os/heap/os_free/index.html
index 75caa2e..07d4956 100644
--- a/develop/os/core_os/heap/os_free/index.html
+++ b/develop/os/core_os/heap/os_free/index.html
@@ -694,7 +694,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/develop/os/core_os/heap/os_malloc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/heap/os_malloc/index.html b/develop/os/core_os/heap/os_malloc/index.html
index 6be7b8f..4f6bffb 100644
--- a/develop/os/core_os/heap/os_malloc/index.html
+++ b/develop/os/core_os/heap/os_malloc/index.html
@@ -694,7 +694,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/develop/os/core_os/heap/os_realloc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/heap/os_realloc/index.html b/develop/os/core_os/heap/os_realloc/index.html
index 583b156..03dc7f2 100644
--- a/develop/os/core_os/heap/os_realloc/index.html
+++ b/develop/os/core_os/heap/os_realloc/index.html
@@ -694,7 +694,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/develop/os/core_os/mbuf/OS_MBUF_DATA/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_DATA/index.html b/develop/os/core_os/mbuf/OS_MBUF_DATA/index.html
index b6f2167..3db898f 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_DATA/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_DATA/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html b/develop/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
index f67f819..21d7652 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html b/develop/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
index f915d05..525d074 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html b/develop/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
index ec90efe..423064b 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html b/develop/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
index c0773db..33552cb 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html b/develop/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
index 50010ea..72cd9a5 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_USRHDR/index.html b/develop/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
index fa882b3..75565c4 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html b/develop/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
index 6ed900b..72bb98b 100644
--- a/develop/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
+++ b/develop/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/mbuf/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/mbuf/index.html b/develop/os/core_os/mbuf/mbuf/index.html
index ad911b2..fc8bf15 100644
--- a/develop/os/core_os/mbuf/mbuf/index.html
+++ b/develop/os/core_os/mbuf/mbuf/index.html
@@ -703,7 +703,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/develop/os/core_os/mbuf/os_mbuf_adj/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_adj/index.html b/develop/os/core_os/mbuf/os_mbuf_adj/index.html
index 79b3321..2225771 100644
--- a/develop/os/core_os/mbuf/os_mbuf_adj/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_adj/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_append/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_append/index.html b/develop/os/core_os/mbuf/os_mbuf_append/index.html
index caa00aa..795ecac 100644
--- a/develop/os/core_os/mbuf/os_mbuf_append/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_append/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_concat/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_concat/index.html b/develop/os/core_os/mbuf/os_mbuf_concat/index.html
index cdb80ec..832c2a5 100644
--- a/develop/os/core_os/mbuf/os_mbuf_concat/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_concat/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_copydata/index.html b/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
index 974dc2d..00cea82 100644
--- a/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_copydata/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html b/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
index e36d7cb..9ac2e34 100644
--- a/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_copyinto/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_dup/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_dup/index.html b/develop/os/core_os/mbuf/os_mbuf_dup/index.html
index c2df625..0abe7c8 100644
--- a/develop/os/core_os/mbuf/os_mbuf_dup/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_dup/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_extend/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_extend/index.html b/develop/os/core_os/mbuf/os_mbuf_extend/index.html
index dc6e5c0..edd041c 100644
--- a/develop/os/core_os/mbuf/os_mbuf_extend/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_extend/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html b/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
index 904155a..b1591df 100644
--- a/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_free_chain/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_get/index.html b/develop/os/core_os/mbuf/os_mbuf_get/index.html
index f1bd86e..dcd03de 100644
--- a/develop/os/core_os/mbuf/os_mbuf_get/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_get/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html b/develop/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
index eb3a7dc..f34a580 100644
--- a/develop/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_memcmp/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_memcmp/index.html b/develop/os/core_os/mbuf/os_mbuf_memcmp/index.html
index 0eea1a1..6425c31 100644
--- a/develop/os/core_os/mbuf/os_mbuf_memcmp/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_memcmp/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_off/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_off/index.html b/develop/os/core_os/mbuf/os_mbuf_off/index.html
index 3918b91..1f311c4 100644
--- a/develop/os/core_os/mbuf/os_mbuf_off/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_off/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_pool_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_pool_init/index.html b/develop/os/core_os/mbuf/os_mbuf_pool_init/index.html
index f16c3d3..00fb38b 100644
--- a/develop/os/core_os/mbuf/os_mbuf_pool_init/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_pool_init/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_prepend/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_prepend/index.html b/develop/os/core_os/mbuf/os_mbuf_prepend/index.html
index eebc3fe..75cb90c 100644
--- a/develop/os/core_os/mbuf/os_mbuf_prepend/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_prepend/index.html
@@ -891,7 +891,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/develop/os/core_os/mbuf/os_mbuf_pullup/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mbuf/os_mbuf_pullup/index.html b/develop/os/core_os/mbuf/os_mbuf_pullup/index.html
index af30f2e..ec24f28 100644
--- a/develop/os/core_os/mbuf/os_mbuf_pullup/index.html
+++ b/develop/os/core_os/mbuf/os_mbuf_pullup/index.html
@@ -891,7 +891,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/develop/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html b/develop/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
index cf07a0c..6866030 100644
--- a/develop/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
+++ b/develop/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
@@ -718,7 +718,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/develop/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html b/develop/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
index c37eccc..d08a41e 100644
--- a/develop/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
+++ b/develop/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
@@ -718,7 +718,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/develop/os/core_os/memory_pool/memory_pool/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/memory_pool/index.html b/develop/os/core_os/memory_pool/memory_pool/index.html
index b226f06..e2373b3 100644
--- a/develop/os/core_os/memory_pool/memory_pool/index.html
+++ b/develop/os/core_os/memory_pool/memory_pool/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/develop/os/core_os/memory_pool/os_memblock_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/os_memblock_get/index.html b/develop/os/core_os/memory_pool/os_memblock_get/index.html
index f18f3e9..a74689a 100644
--- a/develop/os/core_os/memory_pool/os_memblock_get/index.html
+++ b/develop/os/core_os/memory_pool/os_memblock_get/index.html
@@ -718,7 +718,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/develop/os/core_os/memory_pool/os_memblock_put/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/os_memblock_put/index.html b/develop/os/core_os/memory_pool/os_memblock_put/index.html
index d19180d..40e0b8d 100644
--- a/develop/os/core_os/memory_pool/os_memblock_put/index.html
+++ b/develop/os/core_os/memory_pool/os_memblock_put/index.html
@@ -718,7 +718,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/develop/os/core_os/memory_pool/os_mempool_info_get_next/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/os_mempool_info_get_next/index.html b/develop/os/core_os/memory_pool/os_mempool_info_get_next/index.html
index b89c2df..0511d52 100644
--- a/develop/os/core_os/memory_pool/os_mempool_info_get_next/index.html
+++ b/develop/os/core_os/memory_pool/os_mempool_info_get_next/index.html
@@ -718,7 +718,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/develop/os/core_os/memory_pool/os_mempool_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/memory_pool/os_mempool_init/index.html b/develop/os/core_os/memory_pool/os_mempool_init/index.html
index 3cd801e..80f6418 100644
--- a/develop/os/core_os/memory_pool/os_mempool_init/index.html
+++ b/develop/os/core_os/memory_pool/os_mempool_init/index.html
@@ -718,7 +718,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/develop/os/core_os/mqueue/mqueue/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mqueue/mqueue/index.html b/develop/os/core_os/mqueue/mqueue/index.html
index 1001a87..ef69858 100644
--- a/develop/os/core_os/mqueue/mqueue/index.html
+++ b/develop/os/core_os/mqueue/mqueue/index.html
@@ -703,7 +703,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/develop/os/core_os/mqueue/os_mqueue_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mqueue/os_mqueue_get/index.html b/develop/os/core_os/mqueue/os_mqueue_get/index.html
index 61dc15f..284edf4 100644
--- a/develop/os/core_os/mqueue/os_mqueue_get/index.html
+++ b/develop/os/core_os/mqueue/os_mqueue_get/index.html
@@ -731,7 +731,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/develop/os/core_os/mqueue/os_mqueue_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mqueue/os_mqueue_init/index.html b/develop/os/core_os/mqueue/os_mqueue_init/index.html
index f0bf387..77353b9 100644
--- a/develop/os/core_os/mqueue/os_mqueue_init/index.html
+++ b/develop/os/core_os/mqueue/os_mqueue_init/index.html
@@ -731,7 +731,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/develop/os/core_os/mqueue/os_mqueue_put/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mqueue/os_mqueue_put/index.html b/develop/os/core_os/mqueue/os_mqueue_put/index.html
index 3a628c5..d03a964 100644
--- a/develop/os/core_os/mqueue/os_mqueue_put/index.html
+++ b/develop/os/core_os/mqueue/os_mqueue_put/index.html
@@ -731,7 +731,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/develop/os/core_os/msys/msys/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/msys/msys/index.html b/develop/os/core_os/msys/msys/index.html
index 6113621..757215f 100644
--- a/develop/os/core_os/msys/msys/index.html
+++ b/develop/os/core_os/msys/msys/index.html
@@ -703,7 +703,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/develop/os/core_os/msys/os_msys_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/msys/os_msys_get/index.html b/develop/os/core_os/msys/os_msys_get/index.html
index c13c435..e15d12d 100644
--- a/develop/os/core_os/msys/os_msys_get/index.html
+++ b/develop/os/core_os/msys/os_msys_get/index.html
@@ -739,7 +739,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/develop/os/core_os/msys/os_msys_get_pkthdr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/msys/os_msys_get_pkthdr/index.html b/develop/os/core_os/msys/os_msys_get_pkthdr/index.html
index 7698fbf..f24e977 100644
--- a/develop/os/core_os/msys/os_msys_get_pkthdr/index.html
+++ b/develop/os/core_os/msys/os_msys_get_pkthdr/index.html
@@ -739,7 +739,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/develop/os/core_os/msys/os_msys_register/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/msys/os_msys_register/index.html b/develop/os/core_os/msys/os_msys_register/index.html
index 56bd5f1..62b7f83 100644
--- a/develop/os/core_os/msys/os_msys_register/index.html
+++ b/develop/os/core_os/msys/os_msys_register/index.html
@@ -739,7 +739,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/develop/os/core_os/msys/os_msys_reset/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/msys/os_msys_reset/index.html b/develop/os/core_os/msys/os_msys_reset/index.html
index 59c7ee3..d511473 100644
--- a/develop/os/core_os/msys/os_msys_reset/index.html
+++ b/develop/os/core_os/msys/os_msys_reset/index.html
@@ -739,7 +739,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/develop/os/core_os/mutex/mutex/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mutex/mutex/index.html b/develop/os/core_os/mutex/mutex/index.html
index 6aff3f9..562e0c0 100644
--- a/develop/os/core_os/mutex/mutex/index.html
+++ b/develop/os/core_os/mutex/mutex/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/develop/os/core_os/mutex/os_mutex_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mutex/os_mutex_init/index.html b/develop/os/core_os/mutex/os_mutex_init/index.html
index fa9c48d..d5f7a91 100644
--- a/develop/os/core_os/mutex/os_mutex_init/index.html
+++ b/develop/os/core_os/mutex/os_mutex_init/index.html
@@ -694,7 +694,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/develop/os/core_os/mutex/os_mutex_pend/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mutex/os_mutex_pend/index.html b/develop/os/core_os/mutex/os_mutex_pend/index.html
index c586402..2e02bd5 100644
--- a/develop/os/core_os/mutex/os_mutex_pend/index.html
+++ b/develop/os/core_os/mutex/os_mutex_pend/index.html
@@ -694,7 +694,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/develop/os/core_os/mutex/os_mutex_release/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mutex/os_mutex_release/index.html b/develop/os/core_os/mutex/os_mutex_release/index.html
index bd28ce0..9012799 100644
--- a/develop/os/core_os/mutex/os_mutex_release/index.html
+++ b/develop/os/core_os/mutex/os_mutex_release/index.html
@@ -694,7 +694,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/develop/os/core_os/mynewt_os/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/mynewt_os/index.html b/develop/os/core_os/mynewt_os/index.html
index b658501..3cd29ce 100644
--- a/develop/os/core_os/mynewt_os/index.html
+++ b/develop/os/core_os/mynewt_os/index.html
@@ -647,7 +647,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/develop/os/core_os/os_started/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/os_started/index.html b/develop/os/core_os/os_started/index.html
index ca4bb88..e1f7a78 100644
--- a/develop/os/core_os/os_started/index.html
+++ b/develop/os/core_os/os_started/index.html
@@ -659,7 +659,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/develop/os/core_os/porting/port_bsp/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/porting/port_bsp/index.html b/develop/os/core_os/porting/port_bsp/index.html
index a9469be..2d88ff9 100644
--- a/develop/os/core_os/porting/port_bsp/index.html
+++ b/develop/os/core_os/porting/port_bsp/index.html
@@ -521,7 +521,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/develop/os/core_os/porting/port_cpu/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/porting/port_cpu/index.html b/develop/os/core_os/porting/port_cpu/index.html
index 52e0392..d4b8d38 100644
--- a/develop/os/core_os/porting/port_cpu/index.html
+++ b/develop/os/core_os/porting/port_cpu/index.html
@@ -521,7 +521,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/develop/os/core_os/porting/port_mcu/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/porting/port_mcu/index.html b/develop/os/core_os/porting/port_mcu/index.html
index 3e2902d..d925647 100644
--- a/develop/os/core_os/porting/port_mcu/index.html
+++ b/develop/os/core_os/porting/port_mcu/index.html
@@ -521,7 +521,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/develop/os/core_os/porting/port_os/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/porting/port_os/index.html b/develop/os/core_os/porting/port_os/index.html
index 5cc50a2..19a1824 100644
--- a/develop/os/core_os/porting/port_os/index.html
+++ b/develop/os/core_os/porting/port_os/index.html
@@ -521,7 +521,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/develop/os/core_os/sanity/os_sanity_check_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/os_sanity_check_init/index.html b/develop/os/core_os/sanity/os_sanity_check_init/index.html
index 18b59fc..ae9111d 100644
--- a/develop/os/core_os/sanity/os_sanity_check_init/index.html
+++ b/develop/os/core_os/sanity/os_sanity_check_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/develop/os/core_os/sanity/os_sanity_check_register/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/os_sanity_check_register/index.html b/develop/os/core_os/sanity/os_sanity_check_register/index.html
index 4b7717b..3fb3712 100644
--- a/develop/os/core_os/sanity/os_sanity_check_register/index.html
+++ b/develop/os/core_os/sanity/os_sanity_check_register/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/develop/os/core_os/sanity/os_sanity_check_reset/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/os_sanity_check_reset/index.html b/develop/os/core_os/sanity/os_sanity_check_reset/index.html
index 2505c0c..775d09b 100644
--- a/develop/os/core_os/sanity/os_sanity_check_reset/index.html
+++ b/develop/os/core_os/sanity/os_sanity_check_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/develop/os/core_os/sanity/os_sanity_task_checkin/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/os_sanity_task_checkin/index.html b/develop/os/core_os/sanity/os_sanity_task_checkin/index.html
index b0550d0..085b2f7 100644
--- a/develop/os/core_os/sanity/os_sanity_task_checkin/index.html
+++ b/develop/os/core_os/sanity/os_sanity_task_checkin/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/develop/os/core_os/sanity/os_sanity_task_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/os_sanity_task_init/index.html b/develop/os/core_os/sanity/os_sanity_task_init/index.html
index 7d41464..0a52914 100644
--- a/develop/os/core_os/sanity/os_sanity_task_init/index.html
+++ b/develop/os/core_os/sanity/os_sanity_task_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/develop/os/core_os/sanity/sanity/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/sanity/sanity/index.html b/develop/os/core_os/sanity/sanity/index.html
index 55e60c7..14c524e 100644
--- a/develop/os/core_os/sanity/sanity/index.html
+++ b/develop/os/core_os/sanity/sanity/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/develop/os/core_os/semaphore/os_sem_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/semaphore/os_sem_init/index.html b/develop/os/core_os/semaphore/os_sem_init/index.html
index d5be382..713526f 100644
--- a/develop/os/core_os/semaphore/os_sem_init/index.html
+++ b/develop/os/core_os/semaphore/os_sem_init/index.html
@@ -694,7 +694,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/develop/os/core_os/semaphore/os_sem_pend/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/semaphore/os_sem_pend/index.html b/develop/os/core_os/semaphore/os_sem_pend/index.html
index ca998f4..6cbc404 100644
--- a/develop/os/core_os/semaphore/os_sem_pend/index.html
+++ b/develop/os/core_os/semaphore/os_sem_pend/index.html
@@ -694,7 +694,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/develop/os/core_os/semaphore/os_sem_release/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/semaphore/os_sem_release/index.html b/develop/os/core_os/semaphore/os_sem_release/index.html
index 41f0725..13828bc 100644
--- a/develop/os/core_os/semaphore/os_sem_release/index.html
+++ b/develop/os/core_os/semaphore/os_sem_release/index.html
@@ -694,7 +694,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/develop/os/core_os/semaphore/semaphore/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/semaphore/semaphore/index.html b/develop/os/core_os/semaphore/semaphore/index.html
index 3de45ab..0ff21fb 100644
--- a/develop/os/core_os/semaphore/semaphore/index.html
+++ b/develop/os/core_os/semaphore/semaphore/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/develop/os/core_os/task/os_task_count/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/task/os_task_count/index.html b/develop/os/core_os/task/os_task_count/index.html
index f92680f..bc369a1 100644
--- a/develop/os/core_os/task/os_task_count/index.html
+++ b/develop/os/core_os/task/os_task_count/index.html
@@ -702,7 +702,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/develop/os/core_os/task/os_task_info_get_next/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/task/os_task_info_get_next/index.html b/develop/os/core_os/task/os_task_info_get_next/index.html
index a35eeb9..f36b1cb 100644
--- a/develop/os/core_os/task/os_task_info_get_next/index.html
+++ b/develop/os/core_os/task/os_task_info_get_next/index.html
@@ -702,7 +702,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/develop/os/core_os/task/os_task_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/task/os_task_init/index.html b/develop/os/core_os/task/os_task_init/index.html
index df293a3..ca676da 100644
--- a/develop/os/core_os/task/os_task_init/index.html
+++ b/develop/os/core_os/task/os_task_init/index.html
@@ -702,7 +702,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/develop/os/core_os/task/os_task_remove/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/task/os_task_remove/index.html b/develop/os/core_os/task/os_task_remove/index.html
index d257113..ac822be 100644
--- a/develop/os/core_os/task/os_task_remove/index.html
+++ b/develop/os/core_os/task/os_task_remove/index.html
@@ -702,7 +702,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/develop/os/core_os/task/task/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/task/task/index.html b/develop/os/core_os/task/task/index.html
index c665427..49d2be6 100644
--- a/develop/os/core_os/task/task/index.html
+++ b/develop/os/core_os/task/task/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/develop/os/core_os/time/os_get_uptime_usec/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_get_uptime_usec/index.html b/develop/os/core_os/time/os_get_uptime_usec/index.html
index ae2fe66..2d861a4 100644
--- a/develop/os/core_os/time/os_get_uptime_usec/index.html
+++ b/develop/os/core_os/time/os_get_uptime_usec/index.html
@@ -726,7 +726,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/develop/os/core_os/time/os_gettimeofday/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_gettimeofday/index.html b/develop/os/core_os/time/os_gettimeofday/index.html
index b763e43..1378876 100644
--- a/develop/os/core_os/time/os_gettimeofday/index.html
+++ b/develop/os/core_os/time/os_gettimeofday/index.html
@@ -726,7 +726,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/develop/os/core_os/time/os_settimeofday/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_settimeofday/index.html b/develop/os/core_os/time/os_settimeofday/index.html
index 7f6652e..4bc2380 100644
--- a/develop/os/core_os/time/os_settimeofday/index.html
+++ b/develop/os/core_os/time/os_settimeofday/index.html
@@ -726,7 +726,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/develop/os/core_os/time/os_time/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_time/index.html b/develop/os/core_os/time/os_time/index.html
index 89f3f64..dd7662d 100644
--- a/develop/os/core_os/time/os_time/index.html
+++ b/develop/os/core_os/time/os_time/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/develop/os/core_os/time/os_time_advance/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_time_advance/index.html b/develop/os/core_os/time/os_time_advance/index.html
index 5d65b67..bbac16e 100644
--- a/develop/os/core_os/time/os_time_advance/index.html
+++ b/develop/os/core_os/time/os_time_advance/index.html
@@ -726,7 +726,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/develop/os/core_os/time/os_time_delay/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_time_delay/index.html b/develop/os/core_os/time/os_time_delay/index.html
index cbb1a52..bc0ed4b 100644
--- a/develop/os/core_os/time/os_time_delay/index.html
+++ b/develop/os/core_os/time/os_time_delay/index.html
@@ -726,7 +726,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/develop/os/core_os/time/os_time_get/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_time_get/index.html b/develop/os/core_os/time/os_time_get/index.html
index ef6f5fe..7ca71ff 100644
--- a/develop/os/core_os/time/os_time_get/index.html
+++ b/develop/os/core_os/time/os_time_get/index.html
@@ -726,7 +726,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/develop/os/core_os/time/os_time_ms_to_ticks/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/time/os_time_ms_to_ticks/index.html b/develop/os/core_os/time/os_time_ms_to_ticks/index.html
index 64c6df5..f2c5180 100644
--- a/develop/os/core_os/time/os_time_ms_to_ticks/index.html
+++ b/develop/os/core_os/time/os_time_ms_to_ticks/index.html
@@ -726,7 +726,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/develop/os/get_started/cross_tools/index.html
----------------------------------------------------------------------
diff --git a/develop/os/get_started/cross_tools/index.html b/develop/os/get_started/cross_tools/index.html
index a476a25..d4adb46 100644
--- a/develop/os/get_started/cross_tools/index.html
+++ b/develop/os/get_started/cross_tools/index.html
@@ -211,14 +211,6 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
-    </li>
-
-              
-          
-              
-                
   
   
     <li ><a href="../native_tools/">Native install Option</a>
@@ -261,6 +253,14 @@
               
                 
     <li >
+      <a href="../docker/">Docker Container Option</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../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>
   
   
@@ -479,8 +479,8 @@ The direct link to the amd64 build is
     </li>
     <li class="pull-right">
     
-    <a href=../project_create/>
-        Next: Create Your First Project
+    <a href=../docker/>
+        Next: Docker Container Option
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/get_started/docker/index.html
----------------------------------------------------------------------
diff --git a/develop/os/get_started/docker/index.html b/develop/os/get_started/docker/index.html
index ca86379..efb3ea4 100644
--- a/develop/os/get_started/docker/index.html
+++ b/develop/os/get_started/docker/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li class="active">
-      <a href="./">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li class="active">
+      <a href="./">Docker Container Option</a>
     </li>
 
               
@@ -326,7 +326,7 @@
   
   
     <li><a href="
-  ../../../faq/how_to_edit_docs/
+  ../../../faq/go_env/
 ">Appendix</a>
   
   
@@ -457,16 +457,16 @@ and double click to install</p>
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../get_started/>
+    <a href=../cross_tools/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Basic Setup
+        Previous: Install Cross Tools for ARM
     </a>
     
     </li>
     <li class="pull-right">
     
-    <a href=../native_tools/>
-        Next: Native install Option
+    <a href=../project_create/>
+        Next: Create Your First Project
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/get_started/get_started/index.html
----------------------------------------------------------------------
diff --git a/develop/os/get_started/get_started/index.html b/develop/os/get_started/get_started/index.html
index ea619f9..596404f 100644
--- a/develop/os/get_started/get_started/index.html
+++ b/develop/os/get_started/get_started/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li >
+      <a href="../docker/">Docker Container Option</a>
     </li>
 
               
@@ -326,7 +326,7 @@
   
   
     <li><a href="
-  ../../../faq/how_to_edit_docs/
+  ../../../faq/go_env/
 ">Appendix</a>
   
   
@@ -362,9 +362,12 @@
                             <h2 id="quick-start">Quick Start</h2>
 <p>If you are curious about Mynewt and want to get a quick feel for the project, you've come to the right place. We have two options for you:</p>
 <p><br></p>
-<p><strong>Option 1</strong> is the quick and easy way to get up and running with Mynewt. The Newt tool and build toolchains are all available in a single <a href="../docker/">All-in-one Docker Container</a> that you can install on your laptop or computer.</p>
+<p><strong>Option 1</strong> is an easy, self-contained way to get up and running with Mynewt - but has limitations! The Newt tool and build toolchains are all available in a single <a href="../docker/">All-in-one Docker Container</a> that you can install on your laptop or computer.</p>
+<p>However, this is not a long-term option since support is not likely for all features useful or critical to embedded systems development. For example, USB device mapping available in the Docker toolkit (used in this Option 1) is no longer available in the new Docker releases. The Docker option is also typically slower than the native install option. </p>
+<p><span style="color:red"> Therefore, the recommended option is Option 2 below. </span></p>
 <p><br></p>
-<p><strong>Option 2</strong> allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for developing embedded software (e.g. GNU toolchain) natively on your laptop or computer. You may want this if you are already familiar with such environments or are concerned about performance on your machine. Follow the instructions to <a href="../native_tools/">install native tools</a> and <a href="../cross_tools/">install cross tools for ARM</a> if you prefer this option.</p>
+<p><strong>Option 2 (Recommended)</strong> allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for developing embedded software (e.g. GNU toolchain) natively on your laptop or computer. We have tried to make the process easy. For example, for the Mac OS we created brew formulas. </p>
+<p>You want this option if you are familiar with such environments or are concerned about performance on your machine. Follow the instructions to <a href="../native_tools/">install native tools</a> and <a href="../cross_tools/">install cross tools for ARM</a> if you prefer this option.</p>
 <p><br></p>
 <p>You can then proceed with the instructions on how to 
 * <a href="../project_create/">Create Your First Project</a> - on simulated hardware.</p>
@@ -389,8 +392,8 @@
     </li>
     <li class="pull-right">
     
-    <a href=../docker/>
-        Next: Docker Container Option
+    <a href=../native_tools/>
+        Next: Native install Option
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/get_started/native_tools/index.html
----------------------------------------------------------------------
diff --git a/develop/os/get_started/native_tools/index.html b/develop/os/get_started/native_tools/index.html
index 00cb073..0a6e774 100644
--- a/develop/os/get_started/native_tools/index.html
+++ b/develop/os/get_started/native_tools/index.html
@@ -211,14 +211,6 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
-    </li>
-
-              
-          
-              
-                
   
   
     <li class="active"><a href="./">Native install Option</a>
@@ -261,6 +253,14 @@
               
                 
     <li >
+      <a href="../docker/">Docker Container Option</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../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>
   
   
@@ -507,9 +507,9 @@ Setting up gdb (7.7.1-0ubuntu5~14.04.2) ...
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../docker/>
+    <a href=../get_started/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Docker Container Option
+        Previous: Basic Setup
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/get_started/project_create/index.html
----------------------------------------------------------------------
diff --git a/develop/os/get_started/project_create/index.html b/develop/os/get_started/project_create/index.html
index 1a5caaf..3c72674 100644
--- a/develop/os/get_started/project_create/index.html
+++ b/develop/os/get_started/project_create/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li >
+      <a href="../docker/">Docker Container Option</a>
     </li>
 
               
@@ -326,7 +326,7 @@
   
   
     <li><a href="
-  ../../../faq/how_to_edit_docs/
+  ../../../faq/go_env/
 ">Appendix</a>
   
   
@@ -697,9 +697,9 @@ the <a href="../../tutorials/tutorials">tutorials</a> and get a Mynewt project r
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../cross_tools/>
+    <a href=../docker/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Install Cross Tools for ARM
+        Previous: Docker Container Option
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/get_started/serial_access/index.html
----------------------------------------------------------------------
diff --git a/develop/os/get_started/serial_access/index.html b/develop/os/get_started/serial_access/index.html
index 9af8a51..09ccfd8 100644
--- a/develop/os/get_started/serial_access/index.html
+++ b/develop/os/get_started/serial_access/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li >
+      <a href="../docker/">Docker Container Option</a>
     </li>
 
               
@@ -326,7 +326,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/develop/os/get_started/vocabulary/index.html
----------------------------------------------------------------------
diff --git a/develop/os/get_started/vocabulary/index.html b/develop/os/get_started/vocabulary/index.html
index af393c3..7dee262 100644
--- a/develop/os/get_started/vocabulary/index.html
+++ b/develop/os/get_started/vocabulary/index.html
@@ -285,7 +285,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/develop/os/introduction/index.html
----------------------------------------------------------------------
diff --git a/develop/os/introduction/index.html b/develop/os/introduction/index.html
index 4581465..f4069c0 100644
--- a/develop/os/introduction/index.html
+++ b/develop/os/introduction/index.html
@@ -285,7 +285,7 @@
   
   
     <li><a href="
-  ../../faq/how_to_edit_docs/
+  ../../faq/go_env/
 ">Appendix</a>
   
   
@@ -374,11 +374,11 @@ code.</p>
 <p>In order to provide all this functionality, and operate in an
 extremely low resource environment, Mynewt provides a very fine-grained source
 package management and build system tool, called <em>newt</em>.</p>
-<p>You can install and build <em>newt</em> for <a href="../../newt/install/newt_linux/">Linux</a> or <a href="../../newt/install/newt_mac/">Mac</a>.</p>
+<p>You can install <em>newt</em> for <a href="../../newt/install/newt_mac/">Mac OS</a> or <a href="../../newt/install/newt_linux/">Linux</a>.</p>
 <p><br></p>
 <h3 id="newt-manager">Newt Manager</h3>
 <p>In order to enable a user to communicate with remote instances of Mynewt OS and query, configure, and operate them, Mynewt provides an application tool called Newt Manager or <code>newtmgr</code>.</p>
-<p>You can install and build <em>newtmgr</em> from source code on <a href="../../newtmgr/installing/">Linux or Mac</a>.</p>
+<p>You can install <em>newtmgr</em> for <a href="../../newtmgr/install_mac/">Mac OS</a> or <a href="../../newtmgr/install_linux/">Linux</a>.</p>
 <p><br></p>
 <h3 id="build-your-first-mynewt-app-with-newt">Build your first Mynewt App with Newt</h3>
 <p>With the introductions out of the way, now is a good time to <a href="../get_started/get_started/">get set up and

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/modules/baselibc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/baselibc/index.html b/develop/os/modules/baselibc/index.html
index 5e6d8f2..bf722ba 100644
--- a/develop/os/modules/baselibc/index.html
+++ b/develop/os/modules/baselibc/index.html
@@ -491,7 +491,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/develop/os/modules/bootloader/boot_build_status/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_build_status/index.html b/develop/os/modules/bootloader/boot_build_status/index.html
index 02cbf8c..4866ad7 100644
--- a/develop/os/modules/bootloader/boot_build_status/index.html
+++ b/develop/os/modules/bootloader/boot_build_status/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_build_status_one/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_build_status_one/index.html b/develop/os/modules/bootloader/boot_build_status_one/index.html
index 18f1097..34a9ede 100644
--- a/develop/os/modules/bootloader/boot_build_status_one/index.html
+++ b/develop/os/modules/bootloader/boot_build_status_one/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_clear_status/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_clear_status/index.html b/develop/os/modules/bootloader/boot_clear_status/index.html
index ab685af..c38d895 100644
--- a/develop/os/modules/bootloader/boot_clear_status/index.html
+++ b/develop/os/modules/bootloader/boot_clear_status/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_copy_area/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_copy_area/index.html b/develop/os/modules/bootloader/boot_copy_area/index.html
index 24e4fee..f63a874 100644
--- a/develop/os/modules/bootloader/boot_copy_area/index.html
+++ b/develop/os/modules/bootloader/boot_copy_area/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_copy_image/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_copy_image/index.html b/develop/os/modules/bootloader/boot_copy_image/index.html
index fc527e7..16c27e1 100644
--- a/develop/os/modules/bootloader/boot_copy_image/index.html
+++ b/develop/os/modules/bootloader/boot_copy_image/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_erase_area/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_erase_area/index.html b/develop/os/modules/bootloader/boot_erase_area/index.html
index 43781e3..40bdf52 100644
--- a/develop/os/modules/bootloader/boot_erase_area/index.html
+++ b/develop/os/modules/bootloader/boot_erase_area/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_fill_slot/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_fill_slot/index.html b/develop/os/modules/bootloader/boot_fill_slot/index.html
index 7e332e9..a561a70 100644
--- a/develop/os/modules/bootloader/boot_fill_slot/index.html
+++ b/develop/os/modules/bootloader/boot_fill_slot/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_find_image_area_idx/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_find_image_area_idx/index.html b/develop/os/modules/bootloader/boot_find_image_area_idx/index.html
index 687a9c8..650d5a3 100644
--- a/develop/os/modules/bootloader/boot_find_image_area_idx/index.html
+++ b/develop/os/modules/bootloader/boot_find_image_area_idx/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_find_image_part/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_find_image_part/index.html b/develop/os/modules/bootloader/boot_find_image_part/index.html
index 9b41e57..d67886d 100644
--- a/develop/os/modules/bootloader/boot_find_image_part/index.html
+++ b/develop/os/modules/bootloader/boot_find_image_part/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_find_image_slot/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_find_image_slot/index.html b/develop/os/modules/bootloader/boot_find_image_slot/index.html
index 8e126e0..85f52ce 100644
--- a/develop/os/modules/bootloader/boot_find_image_slot/index.html
+++ b/develop/os/modules/bootloader/boot_find_image_slot/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_go/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_go/index.html b/develop/os/modules/bootloader/boot_go/index.html
index c82eed4..048cddc 100644
--- a/develop/os/modules/bootloader/boot_go/index.html
+++ b/develop/os/modules/bootloader/boot_go/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_init_flash/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_init_flash/index.html b/develop/os/modules/bootloader/boot_init_flash/index.html
index 9de3ddf..ebf502f 100644
--- a/develop/os/modules/bootloader/boot_init_flash/index.html
+++ b/develop/os/modules/bootloader/boot_init_flash/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_move_area/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_move_area/index.html b/develop/os/modules/bootloader/boot_move_area/index.html
index 353cdfe..4c22843 100644
--- a/develop/os/modules/bootloader/boot_move_area/index.html
+++ b/develop/os/modules/bootloader/boot_move_area/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_read_image_header/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_read_image_header/index.html b/develop/os/modules/bootloader/boot_read_image_header/index.html
index c673f11..03aba61 100644
--- a/develop/os/modules/bootloader/boot_read_image_header/index.html
+++ b/develop/os/modules/bootloader/boot_read_image_header/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_read_image_headers/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_read_image_headers/index.html b/develop/os/modules/bootloader/boot_read_image_headers/index.html
index e778b45..13f576a 100644
--- a/develop/os/modules/bootloader/boot_read_image_headers/index.html
+++ b/develop/os/modules/bootloader/boot_read_image_headers/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_read_status/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_read_status/index.html b/develop/os/modules/bootloader/boot_read_status/index.html
index 74e1600..8320568 100644
--- a/develop/os/modules/bootloader/boot_read_status/index.html
+++ b/develop/os/modules/bootloader/boot_read_status/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_select_image_slot/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_select_image_slot/index.html b/develop/os/modules/bootloader/boot_select_image_slot/index.html
index 90a83af..24983a1 100644
--- a/develop/os/modules/bootloader/boot_select_image_slot/index.html
+++ b/develop/os/modules/bootloader/boot_select_image_slot/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_slot_addr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_slot_addr/index.html b/develop/os/modules/bootloader/boot_slot_addr/index.html
index 30878b6..4269546 100644
--- a/develop/os/modules/bootloader/boot_slot_addr/index.html
+++ b/develop/os/modules/bootloader/boot_slot_addr/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_slot_to_area_idx/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_slot_to_area_idx/index.html b/develop/os/modules/bootloader/boot_slot_to_area_idx/index.html
index cec496d..848e120 100644
--- a/develop/os/modules/bootloader/boot_slot_to_area_idx/index.html
+++ b/develop/os/modules/bootloader/boot_slot_to_area_idx/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_swap_areas/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_swap_areas/index.html b/develop/os/modules/bootloader/boot_swap_areas/index.html
index b7f6c4d..95d0249 100644
--- a/develop/os/modules/bootloader/boot_swap_areas/index.html
+++ b/develop/os/modules/bootloader/boot_swap_areas/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_vect_delete_main/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_vect_delete_main/index.html b/develop/os/modules/bootloader/boot_vect_delete_main/index.html
index 4a22b5e..6b68ce7 100644
--- a/develop/os/modules/bootloader/boot_vect_delete_main/index.html
+++ b/develop/os/modules/bootloader/boot_vect_delete_main/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_vect_delete_test/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_vect_delete_test/index.html b/develop/os/modules/bootloader/boot_vect_delete_test/index.html
index a0c95e9..c681079 100644
--- a/develop/os/modules/bootloader/boot_vect_delete_test/index.html
+++ b/develop/os/modules/bootloader/boot_vect_delete_test/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_vect_read_main/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_vect_read_main/index.html b/develop/os/modules/bootloader/boot_vect_read_main/index.html
index 5de3afd..ce207ba 100644
--- a/develop/os/modules/bootloader/boot_vect_read_main/index.html
+++ b/develop/os/modules/bootloader/boot_vect_read_main/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_vect_read_one/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_vect_read_one/index.html b/develop/os/modules/bootloader/boot_vect_read_one/index.html
index d1bb90e..5e05d4d 100644
--- a/develop/os/modules/bootloader/boot_vect_read_one/index.html
+++ b/develop/os/modules/bootloader/boot_vect_read_one/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_vect_read_test/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_vect_read_test/index.html b/develop/os/modules/bootloader/boot_vect_read_test/index.html
index 39f4f57..8c76506 100644
--- a/develop/os/modules/bootloader/boot_vect_read_test/index.html
+++ b/develop/os/modules/bootloader/boot_vect_read_test/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/boot_write_status/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/boot_write_status/index.html b/develop/os/modules/bootloader/boot_write_status/index.html
index 6d3dee5..d59f2b3 100644
--- a/develop/os/modules/bootloader/boot_write_status/index.html
+++ b/develop/os/modules/bootloader/boot_write_status/index.html
@@ -722,7 +722,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/develop/os/modules/bootloader/bootloader/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/bootloader/bootloader/index.html b/develop/os/modules/bootloader/bootloader/index.html
index 71cb64e..30df640 100644
--- a/develop/os/modules/bootloader/bootloader/index.html
+++ b/develop/os/modules/bootloader/bootloader/index.html
@@ -510,7 +510,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/develop/os/modules/console/console/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console/index.html b/develop/os/modules/console/console/index.html
index 03a0e16..0851286 100644
--- a/develop/os/modules/console/console/index.html
+++ b/develop/os/modules/console/console/index.html
@@ -510,7 +510,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/develop/os/modules/console/console_blocking_mode/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_blocking_mode/index.html b/develop/os/modules/console/console_blocking_mode/index.html
index c2a4ff7..0aae75d 100644
--- a/develop/os/modules/console/console_blocking_mode/index.html
+++ b/develop/os/modules/console/console_blocking_mode/index.html
@@ -570,7 +570,7 @@
   
   
     <li><a href="
-  ../../../../faq/how_to_edit_docs/
+  ../../../../faq/go_env/
 ">Appendix</a>
   
   



[05/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/network/ble/ble_hs/ble_att/ble_att/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_att/ble_att/index.html b/latest/network/ble/ble_hs/ble_att/ble_att/index.html
index b0d99a4..3d238e2 100644
--- a/latest/network/ble/ble_hs/ble_att/ble_att/index.html
+++ b/latest/network/ble/ble_hs/ble_att/ble_att/index.html
@@ -456,7 +456,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/network/ble/ble_hs/ble_att/functions/ble_att_mtu/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_att/functions/ble_att_mtu/index.html b/latest/network/ble/ble_hs/ble_att/functions/ble_att_mtu/index.html
index c67ab9f..e4c7a4e 100644
--- a/latest/network/ble/ble_hs/ble_att/functions/ble_att_mtu/index.html
+++ b/latest/network/ble/ble_hs/ble_att/functions/ble_att_mtu/index.html
@@ -492,7 +492,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/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/index.html b/latest/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/index.html
index 4a5fa02..dd2300d 100644
--- a/latest/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/index.html
+++ b/latest/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/index.html
@@ -492,7 +492,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/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/index.html b/latest/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/index.html
index bfcd70f..51edea8 100644
--- a/latest/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/index.html
+++ b/latest/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/index.html
@@ -492,7 +492,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/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/index.html b/latest/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/index.html
index 67b9764..42cc78a 100644
--- a/latest/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/index.html
+++ b/latest/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/index.html
@@ -492,7 +492,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/network/ble/ble_hs/ble_gap/ble_gap/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/ble_gap/index.html b/latest/network/ble/ble_hs/ble_gap/ble_gap/index.html
index 72a3373..16f2a22 100644
--- a/latest/network/ble/ble_hs/ble_gap/ble_gap/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/ble_gap/index.html
@@ -469,7 +469,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/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/index.html b/latest/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/index.html
index a3b661b..c3568aa 100644
--- a/latest/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/index.html
@@ -481,7 +481,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/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/index.html
index 9427130..65439d9 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/index.html
index 06ab233..9013c9c 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/index.html
index 8d0a1b6..d34bc56 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/index.html
index e929b9c..40add37 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/index.html
index 615d3b4..c3c32af 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/index.html
index c560aab..9029a89 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/index.html
index bf5f575..0f892fd 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/index.html
index 1b380d9..c07f1b3 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/index.html
index c85ca40..50a3724 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/index.html
index e317eb9..bda193b 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/index.html
index 8481969..54f7b81 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/index.html
index adffdea..58d7ffe 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/index.html
index cb19c92..0bee34d 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/index.html
index 9e2c8ad..1bc231d 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/index.html
index 6072c18..39a88d6 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/index.html
index b9fff9f..ae3a8cb 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/index.html b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/index.html
index 77d975a..7ddad3e 100644
--- a/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/index.html
+++ b/latest/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/index.html
@@ -609,7 +609,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/network/ble/ble_hs/ble_gattc/ble_gattc/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/ble_gattc/index.html b/latest/network/ble/ble_hs/ble_gattc/ble_gattc/index.html
index 3e99310..ca0c916 100644
--- a/latest/network/ble/ble_hs/ble_gattc/ble_gattc/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/ble_gattc/index.html
@@ -469,7 +469,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/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/index.html b/latest/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/index.html
index cca0364..6bc52c3 100644
--- a/latest/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/index.html
@@ -481,7 +481,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/index.html
index e0cdeab..5c48abe 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/index.html
index 13fd7df..144b631 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/index.html
index 82f1281..67f3b01 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/index.html
index 95b9dd2..67dd2bd 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/index.html
index a59ca63..06e1e3f 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/index.html
index 61c5bf1..d48bc22 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/index.html
index 48399ee..6b40c14 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/index.html
index a38aeff..086a804 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/index.html
index 0aaebdb..e5b202e 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/index.html
index c829b8e..4217ab7 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/index.html
index a0ea519..72aba49 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/index.html
index 019d89b..a84d5a9 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/index.html
index 8ec12e7..07c534d 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/index.html
index 676a3d9..363b376 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/index.html
index 35ce26c..4371839 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/index.html
index 3d2b767..46ba954 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/index.html
index b27feb5..c60a3e2 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/index.html
index aece957..e2300db 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/index.html
index 32ff16d..b67367c 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/index.html b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/index.html
index fc1d849..d9eca68 100644
--- a/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/index.html
+++ b/latest/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/index.html
@@ -633,7 +633,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/network/ble/ble_hs/ble_gatts/ble_gatts/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gatts/ble_gatts/index.html b/latest/network/ble/ble_hs/ble_gatts/ble_gatts/index.html
index 1ce3103..c52f2c1 100644
--- a/latest/network/ble/ble_hs/ble_gatts/ble_gatts/index.html
+++ b/latest/network/ble/ble_hs/ble_gatts/ble_gatts/index.html
@@ -469,7 +469,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/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/index.html b/latest/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/index.html
index d3c17a4..3291b5f 100644
--- a/latest/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/index.html
+++ b/latest/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/index.html
@@ -481,7 +481,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/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/index.html b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/index.html
index bd276b8..ff38c16 100644
--- a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/index.html
+++ b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/index.html
@@ -529,7 +529,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/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/index.html b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/index.html
index b4411ed..f5b3cec 100644
--- a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/index.html
+++ b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/index.html
@@ -529,7 +529,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/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/index.html b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/index.html
index 278164c..db8683a 100644
--- a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/index.html
+++ b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/index.html
@@ -529,7 +529,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/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/index.html b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/index.html
index 3a2f846..59e2364 100644
--- a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/index.html
+++ b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/index.html
@@ -529,7 +529,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/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/index.html b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/index.html
index eaf7f41..cacf700 100644
--- a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/index.html
+++ b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/index.html
@@ -529,7 +529,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/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/index.html b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/index.html
index 98fc994..30fdb00 100644
--- a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/index.html
+++ b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/index.html
@@ -529,7 +529,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/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/index.html b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/index.html
index 095e998..f721747 100644
--- a/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/index.html
+++ b/latest/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/index.html
@@ -529,7 +529,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/network/ble/ble_hs/ble_hs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_hs/index.html b/latest/network/ble/ble_hs/ble_hs/index.html
index 69d214d..465cee4 100644
--- a/latest/network/ble/ble_hs/ble_hs/index.html
+++ b/latest/network/ble/ble_hs/ble_hs/index.html
@@ -437,7 +437,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/network/ble/ble_hs/ble_hs_id/ble_hs_id/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_hs_id/ble_hs_id/index.html b/latest/network/ble/ble_hs/ble_hs_id/ble_hs_id/index.html
index a5233aa..e8f08a6 100644
--- a/latest/network/ble/ble_hs/ble_hs_id/ble_hs_id/index.html
+++ b/latest/network/ble/ble_hs/ble_hs_id/ble_hs_id/index.html
@@ -456,7 +456,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/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/index.html b/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/index.html
index 7040156..74c96df 100644
--- a/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/index.html
+++ b/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/index.html
@@ -484,7 +484,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/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/index.html b/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/index.html
index b7f520d..29c1d8f 100644
--- a/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/index.html
+++ b/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/index.html
@@ -484,7 +484,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/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/index.html b/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/index.html
index 5fac9b6..9c5a1a0 100644
--- a/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/index.html
+++ b/latest/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/index.html
@@ -484,7 +484,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/network/ble/ble_hs/ble_hs_return_codes/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/ble_hs_return_codes/index.html b/latest/network/ble/ble_hs/ble_hs_return_codes/index.html
index 4b8b2cf..405f285 100644
--- a/latest/network/ble/ble_hs/ble_hs_return_codes/index.html
+++ b/latest/network/ble/ble_hs/ble_hs_return_codes/index.html
@@ -437,7 +437,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/network/ble/ble_hs/init/definitions/init_defs/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/init/definitions/init_defs/index.html b/latest/network/ble/ble_hs/init/definitions/init_defs/index.html
index 3b311a8..5b616fc 100644
--- a/latest/network/ble/ble_hs/init/definitions/init_defs/index.html
+++ b/latest/network/ble/ble_hs/init/definitions/init_defs/index.html
@@ -481,7 +481,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/network/ble/ble_hs/init/functions/ble_hs_init/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/init/functions/ble_hs_init/index.html b/latest/network/ble/ble_hs/init/functions/ble_hs_init/index.html
index c99247c..9417d8b 100644
--- a/latest/network/ble/ble_hs/init/functions/ble_hs_init/index.html
+++ b/latest/network/ble/ble_hs/init/functions/ble_hs_init/index.html
@@ -497,7 +497,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/network/ble/ble_hs/init/functions/ble_hs_start/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/init/functions/ble_hs_start/index.html b/latest/network/ble/ble_hs/init/functions/ble_hs_start/index.html
index ed9a7d3..b4af334 100644
--- a/latest/network/ble/ble_hs/init/functions/ble_hs_start/index.html
+++ b/latest/network/ble/ble_hs/init/functions/ble_hs_start/index.html
@@ -497,7 +497,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/network/ble/ble_hs/init/functions/ble_hs_synced/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/init/functions/ble_hs_synced/index.html b/latest/network/ble/ble_hs/init/functions/ble_hs_synced/index.html
index 84bb135..cfdce04 100644
--- a/latest/network/ble/ble_hs/init/functions/ble_hs_synced/index.html
+++ b/latest/network/ble/ble_hs/init/functions/ble_hs_synced/index.html
@@ -497,7 +497,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/network/ble/ble_hs/init/init/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/init/init/index.html b/latest/network/ble/ble_hs/init/init/index.html
index 823e648..fdc7d42 100644
--- a/latest/network/ble/ble_hs/init/init/index.html
+++ b/latest/network/ble/ble_hs/init/init/index.html
@@ -469,7 +469,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/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/index.html b/latest/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/index.html
index f428237..d309cba 100644
--- a/latest/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/index.html
+++ b/latest/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/index.html
@@ -524,7 +524,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/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/index.html b/latest/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/index.html
index b23b5c0..ab96bd4 100644
--- a/latest/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/index.html
+++ b/latest/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/index.html
@@ -524,7 +524,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/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/index.html b/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/index.html
index 6888c7f..e48473c 100644
--- a/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/index.html
+++ b/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/index.html
@@ -524,7 +524,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/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/index.html b/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/index.html
index 7c91913..ae23961 100644
--- a/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/index.html
+++ b/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/index.html
@@ -524,7 +524,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/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/index.html b/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/index.html
index 9cacd81..e0894df 100644
--- a/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/index.html
+++ b/latest/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/index.html
@@ -524,7 +524,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/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/index.html b/latest/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/index.html
index 72e9975..cefdc37 100644
--- a/latest/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/index.html
+++ b/latest/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/index.html
@@ -524,7 +524,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/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/index.html b/latest/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/index.html
index 6473c70..2e4fb39 100644
--- a/latest/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/index.html
+++ b/latest/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/index.html
@@ -524,7 +524,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/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/index.html b/latest/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/index.html
index 5a62d8d..edfac3e 100644
--- a/latest/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/index.html
+++ b/latest/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/index.html
@@ -524,7 +524,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/network/ble/ble_hs/other/other/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_hs/other/other/index.html b/latest/network/ble/ble_hs/other/other/index.html
index f8961c9..6777b03 100644
--- a/latest/network/ble/ble_hs/other/other/index.html
+++ b/latest/network/ble/ble_hs/other/other/index.html
@@ -456,7 +456,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/network/ble/ble_intro/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_intro/index.html b/latest/network/ble/ble_intro/index.html
index 64383bc..c07de96 100644
--- a/latest/network/ble/ble_intro/index.html
+++ b/latest/network/ble/ble_intro/index.html
@@ -346,7 +346,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/network/ble/ble_sec/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ble_sec/index.html b/latest/network/ble/ble_sec/index.html
index 4e5920e..5117771 100644
--- a/latest/network/ble/ble_sec/index.html
+++ b/latest/network/ble/ble_sec/index.html
@@ -346,7 +346,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/network/ble/bletiny/bletiny_GAP/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/bletiny/bletiny_GAP/index.html b/latest/network/ble/bletiny/bletiny_GAP/index.html
index 9780e7c..8b52347 100644
--- a/latest/network/ble/bletiny/bletiny_GAP/index.html
+++ b/latest/network/ble/bletiny/bletiny_GAP/index.html
@@ -376,7 +376,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/network/ble/bletiny/bletiny_GATT/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/bletiny/bletiny_GATT/index.html b/latest/network/ble/bletiny/bletiny_GATT/index.html
index 92ebf03..17582bf 100644
--- a/latest/network/ble/bletiny/bletiny_GATT/index.html
+++ b/latest/network/ble/bletiny/bletiny_GATT/index.html
@@ -376,7 +376,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/network/ble/bletiny/bletiny_advdata/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/bletiny/bletiny_advdata/index.html b/latest/network/ble/bletiny/bletiny_advdata/index.html
index 33d231b..248fc5b 100644
--- a/latest/network/ble/bletiny/bletiny_advdata/index.html
+++ b/latest/network/ble/bletiny/bletiny_advdata/index.html
@@ -376,7 +376,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/network/ble/bletiny/bletiny_api/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/bletiny/bletiny_api/index.html b/latest/network/ble/bletiny/bletiny_api/index.html
index d78aa5f..8fb20f7 100644
--- a/latest/network/ble/bletiny/bletiny_api/index.html
+++ b/latest/network/ble/bletiny/bletiny_api/index.html
@@ -376,7 +376,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/network/ble/ini_stack/ble_add_cpu/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ini_stack/ble_add_cpu/index.html b/latest/network/ble/ini_stack/ble_add_cpu/index.html
index 7b55ec9..9fd47e1 100644
--- a/latest/network/ble/ini_stack/ble_add_cpu/index.html
+++ b/latest/network/ble/ini_stack/ble_add_cpu/index.html
@@ -416,7 +416,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/network/ble/ini_stack/ble_consolepkg/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ini_stack/ble_consolepkg/index.html b/latest/network/ble/ini_stack/ble_consolepkg/index.html
index dd121a4..d0a16c4 100644
--- a/latest/network/ble/ini_stack/ble_consolepkg/index.html
+++ b/latest/network/ble/ini_stack/ble_consolepkg/index.html
@@ -416,7 +416,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/network/ble/ini_stack/ble_controller_ini/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ini_stack/ble_controller_ini/index.html b/latest/network/ble/ini_stack/ble_controller_ini/index.html
index ce762e8..06020bd 100644
--- a/latest/network/ble/ini_stack/ble_controller_ini/index.html
+++ b/latest/network/ble/ini_stack/ble_controller_ini/index.html
@@ -416,7 +416,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/network/ble/ini_stack/ble_devadd/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ini_stack/ble_devadd/index.html b/latest/network/ble/ini_stack/ble_devadd/index.html
index 36980fa..27a72e7 100644
--- a/latest/network/ble/ini_stack/ble_devadd/index.html
+++ b/latest/network/ble/ini_stack/ble_devadd/index.html
@@ -416,7 +416,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/network/ble/ini_stack/ble_host_ini/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ini_stack/ble_host_ini/index.html b/latest/network/ble/ini_stack/ble_host_ini/index.html
index 697f8a5..549f4a0 100644
--- a/latest/network/ble/ini_stack/ble_host_ini/index.html
+++ b/latest/network/ble/ini_stack/ble_host_ini/index.html
@@ -416,7 +416,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/network/ble/ini_stack/ble_ini_intro/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ini_stack/ble_ini_intro/index.html b/latest/network/ble/ini_stack/ble_ini_intro/index.html
index 20beafd..5496157 100644
--- a/latest/network/ble/ini_stack/ble_ini_intro/index.html
+++ b/latest/network/ble/ini_stack/ble_ini_intro/index.html
@@ -416,7 +416,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/network/ble/ini_stack/ble_mempool/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ini_stack/ble_mempool/index.html b/latest/network/ble/ini_stack/ble_mempool/index.html
index be74166..d93f3d9 100644
--- a/latest/network/ble/ini_stack/ble_mempool/index.html
+++ b/latest/network/ble/ini_stack/ble_mempool/index.html
@@ -416,7 +416,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/network/ble/ini_stack/ble_parent_ini/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ini_stack/ble_parent_ini/index.html b/latest/network/ble/ini_stack/ble_parent_ini/index.html
index b67aa2c..c80aab0 100644
--- a/latest/network/ble/ini_stack/ble_parent_ini/index.html
+++ b/latest/network/ble/ini_stack/ble_parent_ini/index.html
@@ -416,7 +416,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/network/ble/ini_stack/ble_statpkg/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/ini_stack/ble_statpkg/index.html b/latest/network/ble/ini_stack/ble_statpkg/index.html
index 532de4e..5df7800 100644
--- a/latest/network/ble/ini_stack/ble_statpkg/index.html
+++ b/latest/network/ble/ini_stack/ble_statpkg/index.html
@@ -416,7 +416,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/network/ble/nimble_setup/index.html
----------------------------------------------------------------------
diff --git a/latest/network/ble/nimble_setup/index.html b/latest/network/ble/nimble_setup/index.html
index 38b1771..6116921 100644
--- a/latest/network/ble/nimble_setup/index.html
+++ b/latest/network/ble/nimble_setup/index.html
@@ -346,7 +346,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/command_list/newt_build/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_build/index.html b/latest/newt/command_list/newt_build/index.html
index b23fd6c..8d56b19 100644
--- a/latest/newt/command_list/newt_build/index.html
+++ b/latest/newt/command_list/newt_build/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/newt/command_list/newt_clean/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_clean/index.html b/latest/newt/command_list/newt_clean/index.html
index 2dd9f5e..77a2132 100644
--- a/latest/newt/command_list/newt_clean/index.html
+++ b/latest/newt/command_list/newt_clean/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/newt/command_list/newt_create_image/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_create_image/index.html b/latest/newt/command_list/newt_create_image/index.html
index 2b14859..e0b5c3c 100644
--- a/latest/newt/command_list/newt_create_image/index.html
+++ b/latest/newt/command_list/newt_create_image/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/newt/command_list/newt_debug/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_debug/index.html b/latest/newt/command_list/newt_debug/index.html
index 3db0a8c..bede2af 100644
--- a/latest/newt/command_list/newt_debug/index.html
+++ b/latest/newt/command_list/newt_debug/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/newt/command_list/newt_help/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_help/index.html b/latest/newt/command_list/newt_help/index.html
index 888fbde..19f2d8d 100644
--- a/latest/newt/command_list/newt_help/index.html
+++ b/latest/newt/command_list/newt_help/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/newt/command_list/newt_info/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_info/index.html b/latest/newt/command_list/newt_info/index.html
index d7591a6..b741f1f 100644
--- a/latest/newt/command_list/newt_info/index.html
+++ b/latest/newt/command_list/newt_info/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/newt/command_list/newt_install/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_install/index.html b/latest/newt/command_list/newt_install/index.html
index 6936c2a..c1f42b5 100644
--- a/latest/newt/command_list/newt_install/index.html
+++ b/latest/newt/command_list/newt_install/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/newt/command_list/newt_load/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_load/index.html b/latest/newt/command_list/newt_load/index.html
index 7d015b9..823abe0 100644
--- a/latest/newt/command_list/newt_load/index.html
+++ b/latest/newt/command_list/newt_load/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/newt/command_list/newt_mfg/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_mfg/index.html b/latest/newt/command_list/newt_mfg/index.html
index c30c972..0b75486 100644
--- a/latest/newt/command_list/newt_mfg/index.html
+++ b/latest/newt/command_list/newt_mfg/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/newt/command_list/newt_new/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_new/index.html b/latest/newt/command_list/newt_new/index.html
index 0487152..79a5283 100644
--- a/latest/newt/command_list/newt_new/index.html
+++ b/latest/newt/command_list/newt_new/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/newt/command_list/newt_pkg/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_pkg/index.html b/latest/newt/command_list/newt_pkg/index.html
index e907a82..4d58e71 100644
--- a/latest/newt/command_list/newt_pkg/index.html
+++ b/latest/newt/command_list/newt_pkg/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/newt/command_list/newt_run/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_run/index.html b/latest/newt/command_list/newt_run/index.html
index fd8a665..93be526 100644
--- a/latest/newt/command_list/newt_run/index.html
+++ b/latest/newt/command_list/newt_run/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/newt/command_list/newt_size/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_size/index.html b/latest/newt/command_list/newt_size/index.html
index 9ab9d53..34e7ea7 100644
--- a/latest/newt/command_list/newt_size/index.html
+++ b/latest/newt/command_list/newt_size/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/newt/command_list/newt_sync/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_sync/index.html b/latest/newt/command_list/newt_sync/index.html
index a801fe9..b02ce46 100644
--- a/latest/newt/command_list/newt_sync/index.html
+++ b/latest/newt/command_list/newt_sync/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/newt/command_list/newt_target/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_target/index.html b/latest/newt/command_list/newt_target/index.html
index 4279d54..c49162b 100644
--- a/latest/newt/command_list/newt_target/index.html
+++ b/latest/newt/command_list/newt_target/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/newt/command_list/newt_test/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_test/index.html b/latest/newt/command_list/newt_test/index.html
index beef2c8..abd6ca4 100644
--- a/latest/newt/command_list/newt_test/index.html
+++ b/latest/newt/command_list/newt_test/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/newt/command_list/newt_upgrade/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_upgrade/index.html b/latest/newt/command_list/newt_upgrade/index.html
index be821f8..d581c7c 100644
--- a/latest/newt/command_list/newt_upgrade/index.html
+++ b/latest/newt/command_list/newt_upgrade/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/newt/command_list/newt_vals/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_vals/index.html b/latest/newt/command_list/newt_vals/index.html
index f53b3bb..2141a9b 100644
--- a/latest/newt/command_list/newt_vals/index.html
+++ b/latest/newt/command_list/newt_vals/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/newt/command_list/newt_version/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/command_list/newt_version/index.html b/latest/newt/command_list/newt_version/index.html
index b3e69f2..b992680 100644
--- a/latest/newt/command_list/newt_version/index.html
+++ b/latest/newt/command_list/newt_version/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/newt/install/newt_linux/index.html
----------------------------------------------------------------------
diff --git a/latest/newt/install/newt_linux/index.html b/latest/newt/install/newt_linux/index.html
index efbfbca..d44c0c5 100644
--- a/latest/newt/install/newt_linux/index.html
+++ b/latest/newt/install/newt_linux/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>
   
   


[12/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/mkdocs/search_index.json
----------------------------------------------------------------------
diff --git a/develop/mkdocs/search_index.json b/develop/mkdocs/search_index.json
index 23eceed..0af8892 100644
--- a/develop/mkdocs/search_index.json
+++ b/develop/mkdocs/search_index.json
@@ -107,7 +107,7 @@
         }, 
         {
             "location": "/os/introduction/", 
-            "text": "Introduction\n\n\nWelcome to Apache Mynewt\n\n\nApache Mynewt is an operating system that makes it easy to develop\napplications for microcontroller environments where power and cost\nare driving factors. Examples of these devices are connected locks,\nlights, and wearables.\n\n\nMicrocontroller environments have a number of characteristics that\nmakes the operating system requirements for them unique:\n\n\n\n\n\n\nLow memory footprint: memory on these systems range from\n8-16KB (on the low end) to 16MB (on the high end).\n\n\n\n\n\n\nReduced code size: code often runs out of flash, and total available code size ranges from 64-128KB to 16-32MB.\n\n\n\n\n\n\nLow processing speed: processor speeds vary from 10-12MHz to 160-200MHz.  \n\n\n\n\n\n\nLow power operation: devices operate in mostly sleeping mode, in order to conserve\nbattery power and maximize power usage.\n\n\n\n\n\n\nAs more and more devices get connected, these interconnected devices perform complex 
 tasks. To\nperform these tasks, you need low-level operational functionality built into the operating system.\nTypically, connected devices built with these microcontrollers perform a myriad of functions:\n\n\n\n\n\n\nNetworking Stacks: Bluetooth Low Energy and Thread\n\n\n\n\n\n\nPeripherals: PWM to drive motors, ADCs to measure sensor data, and RTCs\nto keep time.\n\n\n\n\n\n\nScheduled Processing: actions must happen on a calendared or periodic basis.\n\n\n\n\n\n\nApache Mynewt accomplishes all the above easily, by providing a complete\noperating system for constrained devices, including:\n\n\n\n\n\n\nA fully open-source Bluetooth Low Energy stack with both Host and\nController implementations.\n\n\n\n\n\n\nA pre-emptive, multi-tasking Real Time operating system kernel\n\n\n\n\n\n\nA Hardware Abstraction Layer (HAL) that abstracts the MCU's\nperipheral functions, allowing developers to easily write cross-platform\ncode.\n\n\n\n\n\n\n\n\nNewt\n\n\nIn order to provide all this func
 tionality, and operate in an\nextremely low resource environment, Mynewt provides a very fine-grained source\npackage management and build system tool, called \nnewt\n.\n\n\nYou can install and build \nnewt\n for \nLinux\n or \nMac\n.\n\n\n\n\nNewt Manager\n\n\nIn order to enable a user to communicate with remote instances of Mynewt OS and query, configure, and operate them, Mynewt provides an application tool called Newt Manager or \nnewtmgr\n.\n\n\nYou can install and build \nnewtmgr\n from source code on \nLinux or Mac\n.\n\n\n\n\nBuild your first Mynewt App with Newt\n\n\nWith the introductions out of the way, now is a good time to \nget set up and\nstarted\n with your first Mynewt application.\n\n\nHappy Hacking!", 
+            "text": "Introduction\n\n\nWelcome to Apache Mynewt\n\n\nApache Mynewt is an operating system that makes it easy to develop\napplications for microcontroller environments where power and cost\nare driving factors. Examples of these devices are connected locks,\nlights, and wearables.\n\n\nMicrocontroller environments have a number of characteristics that\nmakes the operating system requirements for them unique:\n\n\n\n\n\n\nLow memory footprint: memory on these systems range from\n8-16KB (on the low end) to 16MB (on the high end).\n\n\n\n\n\n\nReduced code size: code often runs out of flash, and total available code size ranges from 64-128KB to 16-32MB.\n\n\n\n\n\n\nLow processing speed: processor speeds vary from 10-12MHz to 160-200MHz.  \n\n\n\n\n\n\nLow power operation: devices operate in mostly sleeping mode, in order to conserve\nbattery power and maximize power usage.\n\n\n\n\n\n\nAs more and more devices get connected, these interconnected devices perform complex 
 tasks. To\nperform these tasks, you need low-level operational functionality built into the operating system.\nTypically, connected devices built with these microcontrollers perform a myriad of functions:\n\n\n\n\n\n\nNetworking Stacks: Bluetooth Low Energy and Thread\n\n\n\n\n\n\nPeripherals: PWM to drive motors, ADCs to measure sensor data, and RTCs\nto keep time.\n\n\n\n\n\n\nScheduled Processing: actions must happen on a calendared or periodic basis.\n\n\n\n\n\n\nApache Mynewt accomplishes all the above easily, by providing a complete\noperating system for constrained devices, including:\n\n\n\n\n\n\nA fully open-source Bluetooth Low Energy stack with both Host and\nController implementations.\n\n\n\n\n\n\nA pre-emptive, multi-tasking Real Time operating system kernel\n\n\n\n\n\n\nA Hardware Abstraction Layer (HAL) that abstracts the MCU's\nperipheral functions, allowing developers to easily write cross-platform\ncode.\n\n\n\n\n\n\n\n\nNewt\n\n\nIn order to provide all this func
 tionality, and operate in an\nextremely low resource environment, Mynewt provides a very fine-grained source\npackage management and build system tool, called \nnewt\n.\n\n\nYou can install \nnewt\n for \nMac OS\n or \nLinux\n.\n\n\n\n\nNewt Manager\n\n\nIn order to enable a user to communicate with remote instances of Mynewt OS and query, configure, and operate them, Mynewt provides an application tool called Newt Manager or \nnewtmgr\n.\n\n\nYou can install \nnewtmgr\n for \nMac OS\n or \nLinux\n.\n\n\n\n\nBuild your first Mynewt App with Newt\n\n\nWith the introductions out of the way, now is a good time to \nget set up and\nstarted\n with your first Mynewt application.\n\n\nHappy Hacking!", 
             "title": "toc"
         }, 
         {
@@ -122,12 +122,12 @@
         }, 
         {
             "location": "/os/introduction/#newt", 
-            "text": "In order to provide all this functionality, and operate in an\nextremely low resource environment, Mynewt provides a very fine-grained source\npackage management and build system tool, called  newt .  You can install and build  newt  for  Linux  or  Mac .", 
+            "text": "In order to provide all this functionality, and operate in an\nextremely low resource environment, Mynewt provides a very fine-grained source\npackage management and build system tool, called  newt .  You can install  newt  for  Mac OS  or  Linux .", 
             "title": "Newt"
         }, 
         {
             "location": "/os/introduction/#newt-manager", 
-            "text": "In order to enable a user to communicate with remote instances of Mynewt OS and query, configure, and operate them, Mynewt provides an application tool called Newt Manager or  newtmgr .  You can install and build  newtmgr  from source code on  Linux or Mac .", 
+            "text": "In order to enable a user to communicate with remote instances of Mynewt OS and query, configure, and operate them, Mynewt provides an application tool called Newt Manager or  newtmgr .  You can install  newtmgr  for  Mac OS  or  Linux .", 
             "title": "Newt Manager"
         }, 
         {
@@ -137,60 +137,15 @@
         }, 
         {
             "location": "/os/get_started/get_started/", 
-            "text": "Quick Start\n\n\nIf you are curious about Mynewt and want to get a quick feel for the project, you've come to the right place. We have two options for you:\n\n\n\n\nOption 1\n is the quick and easy way to get up and running with Mynewt. The Newt tool and build toolchains are all available in a single \nAll-in-one Docker Container\n that you can install on your laptop or computer.\n\n\n\n\nOption 2\n allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for developing embedded software (e.g. GNU toolchain) natively on your laptop or computer. You may want this if you are already familiar with such environments or are concerned about performance on your machine. Follow the instructions to \ninstall native tools\n and \ninstall cross tools for ARM\n if you prefer this option.\n\n\n\n\nYou can then proceed with the instructions on how to \n* \nCreate Your First Project\n - on simulated hardware.\n\n\nUpon successful 
 start, several tutorials await your eager attention!\n\n\n\n\nSend us an email on the dev@ mailing list if you have comments or suggestions!\n If you haven't joined the mailing list, you will find the links \nhere\n.", 
+            "text": "Quick Start\n\n\nIf you are curious about Mynewt and want to get a quick feel for the project, you've come to the right place. We have two options for you:\n\n\n\n\nOption 1\n is an easy, self-contained way to get up and running with Mynewt - but has limitations! The Newt tool and build toolchains are all available in a single \nAll-in-one Docker Container\n that you can install on your laptop or computer.\n\n\nHowever, this is not a long-term option since support is not likely for all features useful or critical to embedded systems development. For example, USB device mapping available in the Docker toolkit (used in this Option 1) is no longer available in the new Docker releases. The Docker option is also typically slower than the native install option. \n\n\n Therefore, the recommended option is Option 2 below. \n\n\n\n\nOption 2 (Recommended)\n allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for develop
 ing embedded software (e.g. GNU toolchain) natively on your laptop or computer. We have tried to make the process easy. For example, for the Mac OS we created brew formulas. \n\n\nYou want this option if you are familiar with such environments or are concerned about performance on your machine. Follow the instructions to \ninstall native tools\n and \ninstall cross tools for ARM\n if you prefer this option.\n\n\n\n\nYou can then proceed with the instructions on how to \n* \nCreate Your First Project\n - on simulated hardware.\n\n\nUpon successful start, several tutorials await your eager attention!\n\n\n\n\nSend us an email on the dev@ mailing list if you have comments or suggestions!\n If you haven't joined the mailing list, you will find the links \nhere\n.", 
             "title": "toc"
         }, 
         {
             "location": "/os/get_started/get_started/#quick-start", 
-            "text": "If you are curious about Mynewt and want to get a quick feel for the project, you've come to the right place. We have two options for you:   Option 1  is the quick and easy way to get up and running with Mynewt. The Newt tool and build toolchains are all available in a single  All-in-one Docker Container  that you can install on your laptop or computer.   Option 2  allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for developing embedded software (e.g. GNU toolchain) natively on your laptop or computer. You may want this if you are already familiar with such environments or are concerned about performance on your machine. Follow the instructions to  install native tools  and  install cross tools for ARM  if you prefer this option.   You can then proceed with the instructions on how to \n*  Create Your First Project  - on simulated hardware.  Upon successful start, several tutorials await your eager attention!
    Send us an email on the dev@ mailing list if you have comments or suggestions!  If you haven't joined the mailing list, you will find the links  here .", 
+            "text": "If you are curious about Mynewt and want to get a quick feel for the project, you've come to the right place. We have two options for you:   Option 1  is an easy, self-contained way to get up and running with Mynewt - but has limitations! The Newt tool and build toolchains are all available in a single  All-in-one Docker Container  that you can install on your laptop or computer.  However, this is not a long-term option since support is not likely for all features useful or critical to embedded systems development. For example, USB device mapping available in the Docker toolkit (used in this Option 1) is no longer available in the new Docker releases. The Docker option is also typically slower than the native install option.    Therefore, the recommended option is Option 2 below.    Option 2 (Recommended)  allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for developing embedded software (e.g. GNU toolchain) 
 natively on your laptop or computer. We have tried to make the process easy. For example, for the Mac OS we created brew formulas.   You want this option if you are familiar with such environments or are concerned about performance on your machine. Follow the instructions to  install native tools  and  install cross tools for ARM  if you prefer this option.   You can then proceed with the instructions on how to \n*  Create Your First Project  - on simulated hardware.  Upon successful start, several tutorials await your eager attention!   Send us an email on the dev@ mailing list if you have comments or suggestions!  If you haven't joined the mailing list, you will find the links  here .", 
             "title": "Quick Start"
         }, 
         {
-            "location": "/os/get_started/docker/", 
-            "text": "Everything You Need in a Docker Container\n\n\nDocker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.\n\n\nDocker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.\n\n\n\n\nInstall Docker\n\n\nInstall docker for your platform. \nMac OS X\n / \nWindows\n / \nLinux\n\n\nMac and Windows\n\n\nMac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support U
 SB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.\n\n\nMake sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.\n\n\nLinux\n\n\nThe docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.\n\n\n\n\nUse the newt wrapper script\n\n\nUse the newt wrapper script to invoke newt.  Create the following file, name it\n\nnewt\n, make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.\n\n\n#!/bin/bash\n\n\n\nif\n \n[\n \n$1\n \n=\n \ndebug\n \n]\n \n||\n \n[\n \n$1\n \n=\n \nrun\n \n]\n\n\nthen\n\n    \nti=\n-ti\n\n\nfi\n\n\ndocker run -e \nNEWT_US
 ER=\n$(\nid -u\n)\n -e \nNEWT_GROUP=\n$(\nid -g\n)\n -e \nNEWT_HOST=\n$(\nuname\n)\n \n$ti\n --rm --device\n=\n/dev/bus/usb --privileged -v \n$(pwd)\n:/workspace -w /workspace mynewt/newt:latest /newt \n$@\n\n\n\n\n\n\n\n\nNote 1:\n Remember to point to the correct subdirectory level when invoking \nnewt\n. For example, invoke it using \n../newt\n in the example below.\n\n\nuser@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj\n\nuser@~/dockertest/myproj$ ../newt version\n\nApache Newt (incubating) version: 0.8.0-b2\n\n\n\n\n\n\n\nNote 2:\n You can upgrade your container by running \ndocker pull mynewt/newt:latest\n when updates are made available.\n\n\n\n\nEnable USB2 Support for Mac or Windows\n\n\nIf you plan on loading your application on an actual device, do the steps below.\n\n\n\n\nInstall VirtualBox extension pack\n\n\nDocker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the \nVirtua
 lBox\n5.0.16 Oracle VM VirtualBox Extension\nPack\n\nand double click to install\n\n\n\n\nEnable USB2 and select your device\n\n\n\n\n\n\nThe \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:\n\n\n\n\nRun the command \ndocker-machine stop default\n in the terminal window or\n\n\nUse the VirtualBox UI. Right click on \ndefault\n -\n Close -\n Power Off\n\n\n\n\n\n\n\n\nEnable USB2 using the VirtualBox UI. Select the \"default\"\n  VM-\nSettings-\nPorts-\nUSB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.\n\n\n\n\n\n\n\n\n\n\nRestart the \"default\" VM. You have two options:\n\n\nRun \ndocker-machine start default\n in the terminal window or \n\n\nUse the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".\n\n\n\n\n\n\n\n\n\n\nNote 3\n: When working with ac
 tual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be able to see the board correctly. For example, you may see an error message like \nError: unable to find CMSIS-DAP device\n when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
-            "title": "Docker Container Option"
-        }, 
-        {
-            "location": "/os/get_started/docker/#everything-you-need-in-a-docker-container", 
-            "text": "Docker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.  Docker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.", 
-            "title": "Everything You Need in a Docker Container"
-        }, 
-        {
-            "location": "/os/get_started/docker/#install-docker", 
-            "text": "Install docker for your platform.  Mac OS X  /  Windows  /  Linux", 
-            "title": "Install Docker"
-        }, 
-        {
-            "location": "/os/get_started/docker/#mac-and-windows", 
-            "text": "Mac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support USB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.  Make sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.", 
-            "title": "Mac and Windows"
-        }, 
-        {
-            "location": "/os/get_started/docker/#linux", 
-            "text": "The docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.", 
-            "title": "Linux"
-        }, 
-        {
-            "location": "/os/get_started/docker/#use-the-newt-wrapper-script", 
-            "text": "Use the newt wrapper script to invoke newt.  Create the following file, name it newt , make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.  #!/bin/bash  if   [   $1   =   debug   ]   ||   [   $1   =   run   ]  then \n     ti= -ti  fi \n\ndocker run -e  NEWT_USER= $( id -u )  -e  NEWT_GROUP= $( id -g )  -e  NEWT_HOST= $( uname )   $ti  --rm --device = /dev/bus/usb --privileged -v  $(pwd) :/workspace -w /workspace mynewt/newt:latest /newt  $@    Note 1:  Remember to point to the correct subdirectory level when invoking  newt . For example, invoke it using  ../newt  in the example below.  user@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj user@~/dockertest/myproj$ ../newt version Apache Newt (incubating) version: 0.8.0-b2   Note 2:  You can upgrade your container by running  docker pull mynewt/newt:latest  when updates are
  made available.", 
-            "title": "Use the newt wrapper script"
-        }, 
-        {
-            "location": "/os/get_started/docker/#enable-usb2-support-for-mac-or-windows", 
-            "text": "If you plan on loading your application on an actual device, do the steps below.", 
-            "title": "Enable USB2 Support for Mac or Windows"
-        }, 
-        {
-            "location": "/os/get_started/docker/#install-virtualbox-extension-pack", 
-            "text": "Docker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the  VirtualBox\n5.0.16 Oracle VM VirtualBox Extension\nPack \nand double click to install", 
-            "title": "Install VirtualBox extension pack"
-        }, 
-        {
-            "location": "/os/get_started/docker/#enable-usb2-and-select-your-device", 
-            "text": "The \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:   Run the command  docker-machine stop default  in the terminal window or  Use the VirtualBox UI. Right click on  default  -  Close -  Power Off     Enable USB2 using the VirtualBox UI. Select the \"default\"\n  VM- Settings- Ports- USB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.      Restart the \"default\" VM. You have two options:  Run  docker-machine start default  in the terminal window or   Use the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".      Note 3 : When working with actual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be abl
 e to see the board correctly. For example, you may see an error message like  Error: unable to find CMSIS-DAP device  when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
-            "title": "Enable USB2 and select your device"
-        }, 
-        {
             "location": "/os/get_started/native_tools/", 
             "text": "Installing Native Mynewt Tools\n\n\nThis page shows how to install tools for native Mynewt targets (simulated targets on your laptop/computer) without using a Docker container. In other words, it allows you to run Mynewt OS as a native application on your Mac or Linux machine to simulate a target and use the Newt tool running natively on your machine to manage the simulated target. It also allows you to run the test suites for all packages not requiring HW support. You may choose to do this instead of using the build toolchain and Newt tool available in a Docker container.\n\n\nThis page provides guidance for MAC and Linux. See the relevant sections below.\n\n\n\n\nSet up toolchain for Mac\n\n\nInstall Brew\n\n\nIf you have not already installed Homebrew from the \n\nnewt\n tutorials pages\n, install it. \n\n\n\n\nInstall gcc/libc\n\n\nOS X ships with a C compiler called Clang.  To build applications for the Mynewt simulator with, a different compiler is used as
  default: gcc.\n\n\n$ brew install gcc\n...\n...\n==\n Summary\n\ud83c\udf7a  /usr/local/Cellar/gcc/5.2.0: 1353 files, 248M\n\n\n\n\n\n\n\nCheck the gcc version you have installed (either using brew or previously installed). The brew-installed version can be checked using \nbrew list gcc\n. The default compiler.yml configuration file in Mynewt expects version 5.x for Mac users, so if the installed version is 6.x and you wish to continue with this newer version, modify the \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n file to change the default \ngcc-5\n defined there to \ngcc-6\n. In other words, replace the lines shown highlighted below:\n\n\n# OS X.\n\ncompiler.path.cc.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5\n\n\ncompiler.path.as.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5 -x assembler-with-cpp\n\n\ncompiler.path.objdump.DARWIN.OVERWRITE: \ngobjdump\n\ncompiler.path.objsize.DARWIN.OVERWRITE: \nobjsize\n\ncompiler.path.objcopy.DARWIN.OVERWRITE: \ngobjc
 opy\n\n\n\n\n\n\nwith the following:\n\n\ncompiler.path.cc.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-6\n\ncompiler.path.as.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-6 -x assembler-with-cpp\u201d\n\n\n\n\n\n\n\nIn case you wish to use Clang, you can change your \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n to use Clang. Delete the gcc-5 DARWIN.OVERWRITE lines highlighted below.\n\n\n# OS X.\n\ncompiler.path.cc.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5\n\n\ncompiler.path.as.DARWIN.OVERWRITE: \n/usr/local/bin/gcc-5 -x assembler-with-cpp\n\n\ncompiler.path.objdump.DARWIN.OVERWRITE: \ngobjdump\n\ncompiler.path.objsize.DARWIN.OVERWRITE: \nobjsize\n\ncompiler.path.objcopy.DARWIN.OVERWRITE: \ngobjcopy\n\n\n\n\n\n\n\n\nNOTE:\n Both the newer gcc 6.x and Clang report a few warnings but they can be ignored.\n\n\n\n\nFURTHER NOTE:\n Mynewt developers mostly use gcc 5.x for sim builds; so it may take a little while to fix issues reported by the newer compiler. One option
  is to \ndisable warnings\n. To do that, remove the \n-Werror\n flag as an option for the compiler in the  \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n file as shown below. \n\n\ncompiler.flags.base: \n\n\n    -m32 -Wall -ggdb\n\n\n\n\n\nYou may alternatively choose to \nspecify the precise warnings to ignore\n depending on the error thrown by the compiler. For example, if you see a \n[-Werror=misleading-indentation]\n error while building the sim image, add \n-Wno-misleading-indentation]\n as a compiler flag in the same line from the \nmynewt-src-directory\n/repos/apache-mynewt-core/compiler/sim/compiler.yml\n file.\n\n\ncompiler.flags.base: \n\n\n    -m32 -Wall -Werror -ggdb -Wno-misleading-indentation\n\n\n\n\n\nA third option is to simply \ndowngrade to gcc 5.x\n.\n\n\n\n\nInstall gdb\n\n\n$ brew install gdb\n...\n...\n==\n Summary\n\ud83c\udf7a  /usr/local/Cellar/gdb/7.10.1: XXX files,YYM\n\n\n\n\n\n\n\nNOTE:\n When running a program with gdb, y
 ou may need to sign your gdb\nexecutable.  \nThis page\n\nshows a recipe for gdb signing. Alternately you can skip this step and\ncontinue without the ability to debug your mynewt application on your PC.*\n\n\n\n\nSet up toolchain for Linux\n\n\nThe below procedure can be used to set up a Debian-based Linux system (e.g.,\nUbuntu).  If you are running a different Linux distribution, you will need to\nsubstitute invocations of \napt-get\n in the below steps with the package manager\nthat your distro uses.\n\n\n\n\nInstall gcc/libc that will produce 32-bit executables:\n\n\n$ sudo apt-get install gcc-multilib libc6-i386\n\n\n\n\n\n\n\nInstall gdb\n\n\n$ sudo apt-get install gdb\n\nReading package lists... Done\nBuilding dependency tree       \nReading state information... Done\nSuggested packages:\n  gdb-doc gdbserver\nThe following NEW packages will be installed:\n  gdb\n...\nProcessing triggers for man-db (2.6.7.1-1ubuntu1) ...\nSetting up gdb (7.7.1-0ubuntu5~14.04.2) ...\n\n\n\n\n\n
 \n\nAt this point you have installed all the necessary software to build and test code on a simluator running on your Mac or Linux. Proceed to the \nCreate Your First Project\n section.", 
             "title": "toc"
@@ -237,43 +192,33 @@
         }, 
         {
             "location": "/newt/install/newt_mac/", 
-            "text": "Install newt tool on your Mac\n\n\nGetting your Mac Ready\n\n\nIf you want to build the \nnewt\n tool from its source code, follow the following steps:\n\n\n\n\n1. Install Homebrew on your Mac OS X\n\n\n\n\nDo 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.\n\n\n\n\n        $ ruby -e \n$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\n\n\n\n\n\n\nAlternatively, you can just extract (or \ngit clone\n) Homebrew and install it to \n/usr/local\n.\n\n\n\n\n2. Install Go, the programming language\n\n\n\n\n\n\nGo 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. \n\n\n\n\n\n\nsrc contains Go source files organized into packages (one package per directory),\n\n\n\n\n\n\npkg contains package objects, and\n\n
 \n\n\n\n\nbin contains executable commands.\n\n\n\n\n\n\nThe 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 \nnewt\n tool repository.\n\n\n\n\n\n\n\n\n        $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`\n\n\n\n\n\n(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.)\n\n\n\n\n        $ vi ~/.bash_profile\n        $ source ~/.bash_profile\n\n\n\n\n\n\n\n\n\nNext, using \nbrew\n, 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 \nnewt\n rep
 o into your local Go environment.\n\n\n\n\n        $ brew install go\n        ==\n \n        ...\n        ... \n        ==\n *Summary*\n        \ud83c\udf7a  /usr/local/Cellar/go/1.5.1: 5330 files, 273M\n\n\n\n\n\nAlternatively, you can download the Go package directly from (https://golang.org/dl/) instead of brewing it. Install it in /usr/local directory.\n\n\n\n\n3. Create local repository\n\n\n\n\nUse 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.\n\n\n\n\n        $ go get mynewt.apache.org/newt/...\n\n\n\n\n\n\n\nCheck that newt.go is in place.\n\n\n\n\n        $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml\n\n\n\n\n\n\n\n4. Build the Newt tool\n\n\n\n\nUse Go to run the newt.go program to build the \nnewt\n tool. The command \ngo install\n compiles and writes 
 the resulting executable to an output file named \nnewt\n, which is then installed, along with its dependencies, in $GOPATH/bin.\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\n\n\n\n\nAt this point, you can try using \nnewt\n. 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'.\n\n\n\n\n(Note: If you are going to be modifying the \nnewt\n 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 \nexport newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"\n in your .bash_profile and execute it by calling \n$newt\n at the prompt instead of \nnewt\n. Essentially, \n$newt\n calls \ngo run\n which runs the compiled binary directly without producing an executable. Don't forget to reload the 
 updated bash profile by typing \nsource ~/.bash_profile\n at the prompt! )\n\n\n        $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          newt [command]\n\n        Examples:\n          newt\n          newt help [\ncommand-name\n]\n            For help on \ncommand-name\n.  If not specified, print this message.\n\n        Available
  Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug \ntarget\n\n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure, and query targets\n          test         Executes unit tests for one or more packages\n          upgrade      Upgrade project dependencies\n          vals         Display valid values f
 or the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default \nWARN\n)\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don\nt output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use \nnewt [command] --help\n for more information about a comma\n\n\n\n\n\n\n\n5. Updating the Newt tool\n\n\n\n\nYou will update the newt tool in the same place as you initially installed the newt tool.\n\n\nStart by updating the git repository of the newt tool (you can change to a different branch using git checkout [branch] if you need to)\n\n\nThen update each of the tools newt, newtmgr a
 nd newtvm as needed\n\n\n\n\n        $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls \n$GOPATH\n/bin/\n        newt newtmgr newtvm\n\n\n\n\n\nThat should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
+            "text": "Installing Newt on Mac OS\n\n\nNewt is supported on Mac OS X 64 bit platforms and has been tested on Mac OS 10.9 and higher.\n\n\nThis page shows you how to install the following versions of newt:\n\n\n\n\nThe latest stable release version (1.0.0) \n\n\nThe latest from the master branch (unstable)\n\n\n\n\nNote:\n If you would like to contribute to the newt tool, see \nSetting Up Go Environment to Contribute to Newt and Newtmgr Tools\n.\n\n\nInstalling Homebrew\n\n\nIf you do not have Homebrew installed, run the following command. You will be prompted for your sudo password.\n\n\n$ ruby -e \n$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\n\n\n\n\n\n\nYou can also extract (or \ngit clone\n) Homebrew and install it to /usr/local.\n\n\n\n\nInstalling Newt\n\n\nAdd the \n runtimeco/homebrew-mynewt \n tap:\n\n\n$brew tap runtimeco/homebrew-mynewt\n$brew update\n\n\n\n\n\n\n\nInstalling the Latest Release Version of Newt\n\n\nInstall t
 he latest stable release version (1.0.0) of newt:\n\n\n$brew install mynewt-newt\n==\n Installing mynewt-newt from runtimeco/mynewt\n==\n Downloading https://github.com/runtimeco/binary-releases/raw/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.bottle.tar.gz\n==\n Downloading from https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.\n######################################################################## 100.0%\n==\n Pouring mynewt-newt-1.0.0.mavericks.bottle.tar.gz\n\ud83c\udf7a  /usr/local/Cellar/mynewt-newt/1.0.0: 3 files, 10.4MB\n\n\n\n\n\n\n\nNote:\n 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.\n\n\n\nCheck that you are using the installed version of newt:\n\n\n$which newt\n/usr/local/bin/newt\n$ls -l /usr/local/bin/newt\nlrwxr-xr-x
   1 user  staff  36 Apr 15 08:18 /usr/local/bin/newt -\n ../Cellar/mynewt-newt/1.0.0/bin/newt\n$newt version\nApache Newt (incubating) version: 1.0.0\n\n\n\n\n\nNote:\n If you previously built newt from source and the output of \nwhich newt\n shows \"$GOPATH/bin/newt\", you will need to move \"$GOPATH/bin\"  after \"/usr/local/bin\" in your $PATH.\n\n\n\nGet information about newt: \n\n\n$newt help\nNewt allows you to create your own embedded application based on the Mynewt \noperating system. Newt provides both build and package management in a single \ntool, which allows you to compose an embedded application, and set of \nprojects, and then build the necessary artifacts from those projects. For more \ninformation on the Mynewt operating system, please visit \nhttps://mynewt.apache.org/. \n\nPlease use the newt help command, and specify the name of the command you want \nhelp for, for help on how to use a specific command\n\nUsage:\n  newt [flags]\n  newt [command]\n\nExamples:\n 
  newt\n  newt help [\ncommand-name\n]\n    For help on \ncommand-name\n.  If not specified, print this message.\n\nAvailable Commands:\n  build        Build one or more targets\n  clean        Delete build artifacts for one or more targets\n  create-image Add image header to target binary\n  debug        Open debugger session to target\n  info         Show project info\n  install      Install project dependencies\n  load         Load built target to board\n  mfg          Manufacturing flash image commands\n  new          Create a new project\n  pkg          Create and manage packages in the current workspace\n  run          build/create-image/download/debug \ntarget\n\n  size         Size of target components\n  sync         Synchronize project dependencies\n  target       Commands to create, delete, configure, and query targets\n  test         Executes unit tests for one or more packages\n  upgrade      Upgrade project dependencies\n  vals         Display valid values for the speci
 fied element type(s)\n  version      Display the Newt version number\n\nFlags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default \nWARN\n)\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don\nt output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse \nnewt [command] --help\n for more information about a command.\n\n\n\n\n\n\n\nInstalling Newt from the Master Branch\n\n\nWe 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. \n\n\n Notes: \n\n\n\n\nThe master branch may be unstable.\n\n\nThis installation will install the latest version of Go on your computer, if it is not installe
 d, and compile newt locally. \n\n\n\n\n\nIf you previously installed newt using brew, unlink the current version:\n\n\n$brew unlink mynewt-newt\n\n\n\n\n\n\nInstall the latest unstable version of newt from the master branch:\n\n\n$brew install --HEAD mynewt-newt\n==\n Installing mynewt-newt from runtimeco/mynewt\n==\n Cloning https://github.com/apache/incubator-mynewt-newt.git\nCloning into \nUsers/\nusername\n/Library/Caches/Homebrew/mynewt-newt--git\n...\nremote: Counting objects: 623, done.\nremote: Compressing objects: 100% (501/501), done.\nremote: Total 623 (delta 154), reused 323 (delta 84), pack-reused 0\nReceiving objects: 100% (623/623), 1.10 MiB | 0 bytes/s, done.\nResolving deltas: 100% (154/154), done.\n==\n Checking out branch master\n==\n go install\n\ud83c\udf7a  /usr/local/Cellar/mynewt-newt/HEAD-409f7d3: 3 files, 10.4MB, built in 10 seconds\n$newt version\nApache Newt (incubating) version: 1.0.0-dev\n\n\n\n\n\n\nTo switch back to the stable release version (1.0.0) 
 of newt, you can run:\n\n\n$brew switch mynewt-newt 1.0.0\nCleaning /usr/local/Cellar/mynewt-newt/1.0.0\nCleaning /usr/local/Cellar/mynewt-newt/HEAD-409f7d3\n1 links created for /usr/local/Cellar/mynewt-newt/1.0.0\n$newt version\nApache Newt (incubating) version: 1.0.0", 
             "title": "Install Newt on Mac"
         }, 
         {
-            "location": "/newt/install/newt_mac/#install-newt-tool-on-your-mac", 
-            "text": "", 
-            "title": "Install newt tool on your Mac"
-        }, 
-        {
-            "location": "/newt/install/newt_mac/#getting-your-mac-ready", 
-            "text": "If you want to build the  newt  tool from its source code, follow the following steps:", 
-            "title": "Getting your Mac Ready"
-        }, 
-        {
-            "location": "/newt/install/newt_mac/#1-install-homebrew-on-your-mac-os-x", 
-            "text": "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.           $ ruby -e  $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)   Alternatively, you can just extract (or  git clone ) Homebrew and install it to  /usr/local .", 
-            "title": "1. Install Homebrew on your Mac OS X"
+            "location": "/newt/install/newt_mac/#installing-newt-on-mac-os", 
+            "text": "Newt is supported on Mac OS X 64 bit platforms and has been tested on Mac OS 10.9 and higher.  This page shows you how to install the following versions of newt:   The latest stable release version (1.0.0)   The latest from the master branch (unstable)   Note:  If you would like to contribute to the newt tool, see  Setting Up Go Environment to Contribute to Newt and Newtmgr Tools .", 
+            "title": "Installing Newt on Mac OS"
         }, 
         {
-            "location": "/newt/install/newt_mac/#2-install-go-the-programming-language", 
-            "text": "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.     src contains Go source files organized into packages (one package per directory),    pkg contains package objects, and    bin contains executable commands.    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  newt  tool repository.             $ cd $HOME\n        $ mkdir -p dev/go  \n        $ cd dev/go\n        $ export GOPATH=`pwd`  (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.)           $ vi ~/.bash_profile\n        $ source ~/.bash_profile   
  Next, using  brew , 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  newt  repo into your local Go environment.           $ brew install go\n        ==  \n        ...\n        ... \n        ==  *Summary*\n        \ud83c\udf7a  /usr/local/Cellar/go/1.5.1: 5330 files, 273M  Alternatively, you can download the Go package directly from (https://golang.org/dl/) instead of brewing it. Install it in /usr/local directory.", 
-            "title": "2. Install Go, the programming language"
+            "location": "/newt/install/newt_mac/#installing-homebrew", 
+            "text": "If you do not have Homebrew installed, run the following command. You will be prompted for your sudo password.  $ ruby -e  $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)   You can also extract (or  git clone ) Homebrew and install it to /usr/local.", 
+            "title": "Installing Homebrew"
         }, 
         {
-            "location": "/newt/install/newt_mac/#3-create-local-repository", 
-            "text": "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.           $ go get mynewt.apache.org/newt/...   Check that newt.go is in place.           $ ls $GOPATH/src/mynewt.apache.org/newt\n        DISCLAIMER  NOTICE      newt        newtvm      viper\n        LICENSE     README.md   newtmgr     util        yaml", 
-            "title": "3. Create local repository"
+            "location": "/newt/install/newt_mac/#installing-newt", 
+            "text": "Add the   runtimeco/homebrew-mynewt   tap:  $brew tap runtimeco/homebrew-mynewt\n$brew update", 
+            "title": "Installing Newt"
         }, 
         {
-            "location": "/newt/install/newt_mac/#4-build-the-newt-tool", 
-            "text": "Use Go to run the newt.go program to build the  newt  tool. The command  go install  compiles and writes the resulting executable to an output file named  newt , which is then installed, along with its dependencies, in $GOPATH/bin.           $ cd $GOPATH/src/mynewt.apache.org/newt/newt\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm    At this point, you can try using  newt . 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'.   (Note: If you are going to be modifying the  newt  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  export newt=\"go run $GOPATH/mynewt.apache.org/newt/newt/newt.go\"  in your .bash_profile and execute it by calling  $newt  at the prompt instead of  newt . Essentially,  $newt  calls  go run  which runs the compile
 d binary directly without producing an executable. Don't forget to reload the updated bash profile by typing  source ~/.bash_profile  at the prompt! )          $ newt version\n        Newt version:  1.0\n        $ newt -h\n        Newt allows you to create your own embedded application based on the Mynewt \n        operating system. Newt provides both build and package management in a single \n        tool, which allows you to compose an embedded application, and set of \n        projects, and then build the necessary artifacts from those projects. For more \n        information on the Mynewt operating system, please visit \n        https://mynewt.apache.org/. \n\n        Please use the newt help command, and specify the name of the command you want \n        help for, for help on how to use a specific command\n\n        Usage:\n          newt [flags]\n          newt [command]\n\n        Examples:\n          newt\n          newt help [ command-name ]\n            For help on  comman
 d-name .  If not specified, print this message.\n\n        Available Commands:\n          build        Build one or more targets\n          clean        Delete build artifacts for one or more targets\n          create-image Add image header to target binary\n          debug        Open debugger session to target\n          info         Show project info\n          install      Install project dependencies\n          load         Load built target to board\n          mfg          Manufacturing flash image commands\n          new          Create a new project\n          pkg          Create and manage packages in the current workspace\n          run          build/create-image/download/debug  target \n          size         Size of target components\n          sync         Synchronize project dependencies\n          target       Commands to create, delete, configure, and query targets\n          test         Executes unit tests for one or more packages\n          upgrade      Upgrade p
 roject dependencies\n          vals         Display valid values for the specified element type(s)\n          version      Display the Newt version number\n\n        Flags:\n          -h, --help              Help for newt commands\n          -j, --jobs int          Number of concurrent build jobs (default 8)\n          -l, --loglevel string   Log level (default  WARN )\n          -o, --outfile string    Filename to tee output to\n          -q, --quiet             Be quiet; only display error output\n          -s, --silent            Be silent; don t output anything\n          -v, --verbose           Enable verbose output when executing commands\n\n        Use  newt [command] --help  for more information about a comma", 
-            "title": "4. Build the Newt tool"
+            "location": "/newt/install/newt_mac/#installing-the-latest-release-version-of-newt", 
+            "text": "Install the latest stable release version (1.0.0) of newt:  $brew install mynewt-newt\n==  Installing mynewt-newt from runtimeco/mynewt\n==  Downloading https://github.com/runtimeco/binary-releases/raw/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.bottle.tar.gz\n==  Downloading from https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.\n######################################################################## 100.0%\n==  Pouring mynewt-newt-1.0.0.mavericks.bottle.tar.gz\n\ud83c\udf7a  /usr/local/Cellar/mynewt-newt/1.0.0: 3 files, 10.4MB   Note:  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.  \nCheck that you are using the installed version of newt:  $which newt\n/usr/local/bin/newt\n$ls -l /usr/local/bin/newt\nlrwxr-xr-x
   1 user  staff  36 Apr 15 08:18 /usr/local/bin/newt -  ../Cellar/mynewt-newt/1.0.0/bin/newt\n$newt version\nApache Newt (incubating) version: 1.0.0  Note:  If you previously built newt from source and the output of  which newt  shows \"$GOPATH/bin/newt\", you will need to move \"$GOPATH/bin\"  after \"/usr/local/bin\" in your $PATH.  \nGet information about newt:   $newt help\nNewt allows you to create your own embedded application based on the Mynewt \noperating system. Newt provides both build and package management in a single \ntool, which allows you to compose an embedded application, and set of \nprojects, and then build the necessary artifacts from those projects. For more \ninformation on the Mynewt operating system, please visit \nhttps://mynewt.apache.org/. \n\nPlease use the newt help command, and specify the name of the command you want \nhelp for, for help on how to use a specific command\n\nUsage:\n  newt [flags]\n  newt [command]\n\nExamples:\n  newt\n  newt help [ c
 ommand-name ]\n    For help on  command-name .  If not specified, print this message.\n\nAvailable Commands:\n  build        Build one or more targets\n  clean        Delete build artifacts for one or more targets\n  create-image Add image header to target binary\n  debug        Open debugger session to target\n  info         Show project info\n  install      Install project dependencies\n  load         Load built target to board\n  mfg          Manufacturing flash image commands\n  new          Create a new project\n  pkg          Create and manage packages in the current workspace\n  run          build/create-image/download/debug  target \n  size         Size of target components\n  sync         Synchronize project dependencies\n  target       Commands to create, delete, configure, and query targets\n  test         Executes unit tests for one or more packages\n  upgrade      Upgrade project dependencies\n  vals         Display valid values for the specified element type(s)\n  vers
 ion      Display the Newt version number\n\nFlags:\n  -h, --help              Help for newt commands\n  -j, --jobs int          Number of concurrent build jobs (default 8)\n  -l, --loglevel string   Log level (default  WARN )\n  -o, --outfile string    Filename to tee output to\n  -q, --quiet             Be quiet; only display error output\n  -s, --silent            Be silent; don t output anything\n  -v, --verbose           Enable verbose output when executing commands\n\nUse  newt [command] --help  for more information about a command.", 
+            "title": "Installing the Latest Release Version of Newt"
         }, 
         {
-            "location": "/newt/install/newt_mac/#5-updating-the-newt-tool", 
-            "text": "You will update the newt tool in the same place as you initially installed the newt tool.  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)  Then update each of the tools newt, newtmgr and newtvm as needed           $ cd $GOPATH/src/mynewt.apache.org/newt\n        $ git pull\n        $ cd newt\n        $ go install\n        $ cd ../newtmgr\n        $ go install\n        $ cd ../newtvm\n        $ go install\n        $ ls  $GOPATH /bin/\n        newt newtmgr newtvm  That should have updated your newt, newtmgr and newtvm to the latest versions based on the git repository you used.", 
-            "title": "5. Updating the Newt tool"
+            "location": "/newt/install/newt_mac/#installing-newt-from-the-master-branch", 
+            "text": "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.    Notes:    The master branch may be unstable.  This installation will install the latest version of Go on your computer, if it is not installed, and compile newt locally.    \nIf you previously installed newt using brew, unlink the current version:  $brew unlink mynewt-newt  \nInstall the latest unstable version of newt from the master branch:  $brew install --HEAD mynewt-newt\n==  Installing mynewt-newt from runtimeco/mynewt\n==  Cloning https://github.com/apache/incubator-mynewt-newt.git\nCloning into  Users/ username /Library/Caches/Homebrew/mynewt-newt--git ...\nremote: Counting objects: 623, done.\nremote: Compressing objects: 100% (501/501), done.\nremote: Total 623 (delta 154), reused 323 (delta 84), pack-reused 0\nReceiving objects: 100% (623/623), 1.10 
 MiB | 0 bytes/s, done.\nResolving deltas: 100% (154/154), done.\n==  Checking out branch master\n==  go install\n\ud83c\udf7a  /usr/local/Cellar/mynewt-newt/HEAD-409f7d3: 3 files, 10.4MB, built in 10 seconds\n$newt version\nApache Newt (incubating) version: 1.0.0-dev  \nTo switch back to the stable release version (1.0.0) of newt, you can run:  $brew switch mynewt-newt 1.0.0\nCleaning /usr/local/Cellar/mynewt-newt/1.0.0\nCleaning /usr/local/Cellar/mynewt-newt/HEAD-409f7d3\n1 links created for /usr/local/Cellar/mynewt-newt/1.0.0\n$newt version\nApache Newt (incubating) version: 1.0.0", 
+            "title": "Installing Newt from the Master Branch"
         }, 
         {
             "location": "/newt/install/newt_linux/", 
@@ -356,6 +301,51 @@
             "title": "Install OpenOCD"
         }, 
         {
+            "location": "/os/get_started/docker/", 
+            "text": "Everything You Need in a Docker Container\n\n\nDocker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.\n\n\nDocker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.\n\n\n\n\nInstall Docker\n\n\nInstall docker for your platform. \nMac OS X\n / \nWindows\n / \nLinux\n\n\nMac and Windows\n\n\nMac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support U
 SB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.\n\n\nMake sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.\n\n\nLinux\n\n\nThe docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.\n\n\n\n\nUse the newt wrapper script\n\n\nUse the newt wrapper script to invoke newt.  Create the following file, name it\n\nnewt\n, make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.\n\n\n#!/bin/bash\n\n\n\nif\n \n[\n \n$1\n \n=\n \ndebug\n \n]\n \n||\n \n[\n \n$1\n \n=\n \nrun\n \n]\n\n\nthen\n\n    \nti=\n-ti\n\n\nfi\n\n\ndocker run -e \nNEWT_US
 ER=\n$(\nid -u\n)\n -e \nNEWT_GROUP=\n$(\nid -g\n)\n -e \nNEWT_HOST=\n$(\nuname\n)\n \n$ti\n --rm --device\n=\n/dev/bus/usb --privileged -v \n$(pwd)\n:/workspace -w /workspace mynewt/newt:latest /newt \n$@\n\n\n\n\n\n\n\n\nNote 1:\n Remember to point to the correct subdirectory level when invoking \nnewt\n. For example, invoke it using \n../newt\n in the example below.\n\n\nuser@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj\n\nuser@~/dockertest/myproj$ ../newt version\n\nApache Newt (incubating) version: 0.8.0-b2\n\n\n\n\n\n\n\nNote 2:\n You can upgrade your container by running \ndocker pull mynewt/newt:latest\n when updates are made available.\n\n\n\n\nEnable USB2 Support for Mac or Windows\n\n\nIf you plan on loading your application on an actual device, do the steps below.\n\n\n\n\nInstall VirtualBox extension pack\n\n\nDocker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the \nVirtua
 lBox\n5.0.16 Oracle VM VirtualBox Extension\nPack\n\nand double click to install\n\n\n\n\nEnable USB2 and select your device\n\n\n\n\n\n\nThe \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:\n\n\n\n\nRun the command \ndocker-machine stop default\n in the terminal window or\n\n\nUse the VirtualBox UI. Right click on \ndefault\n -\n Close -\n Power Off\n\n\n\n\n\n\n\n\nEnable USB2 using the VirtualBox UI. Select the \"default\"\n  VM-\nSettings-\nPorts-\nUSB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.\n\n\n\n\n\n\n\n\n\n\nRestart the \"default\" VM. You have two options:\n\n\nRun \ndocker-machine start default\n in the terminal window or \n\n\nUse the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".\n\n\n\n\n\n\n\n\n\n\nNote 3\n: When working with ac
 tual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be able to see the board correctly. For example, you may see an error message like \nError: unable to find CMSIS-DAP device\n when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
+            "title": "Docker Container Option"
+        }, 
+        {
+            "location": "/os/get_started/docker/#everything-you-need-in-a-docker-container", 
+            "text": "Docker provides a quick and easy way to get up and running with Mynewt. The\nnewt command line tool and the entire build toolchain is available in a single\ndocker container. The container is all that's needed to run your Mynewt based\napplication in the simulator.  Enabling USB2 with your docker installation will\nallow you to load your application on a supported device.  Docker is the only supported option if you are working on a Windows machine. If you are using Mac OS X or Linux, you have the choice of installing a Docker container of tools and toolchains or installing them natively. This chapter describes how to set up the Docker image for all three platforms.", 
+            "title": "Everything You Need in a Docker Container"
+        }, 
+        {
+            "location": "/os/get_started/docker/#install-docker", 
+            "text": "Install docker for your platform.  Mac OS X  /  Windows  /  Linux", 
+            "title": "Install Docker"
+        }, 
+        {
+            "location": "/os/get_started/docker/#mac-and-windows", 
+            "text": "Mac and Windows require Docker Toolbox to interact with USB devices.  Docker\nfor Mac and Docker for Windows do not support USB. Docker Toolbox uses\nVirtualBox and allows you to map USB devices into docker containers as\ndescribed below.  Make sure to double click the Docker Quickstart Terminal application if you're\non Mac or Windows.", 
+            "title": "Mac and Windows"
+        }, 
+        {
+            "location": "/os/get_started/docker/#linux", 
+            "text": "The docker daemon listens on a Unix domain socket on Linux.  That socket is\nowned by root, which means by default you must be root to start a container.\nMake sure to follow the optional step of adding yourself to the docker group so\nyou can start the newt container as yourself.", 
+            "title": "Linux"
+        }, 
+        {
+            "location": "/os/get_started/docker/#use-the-newt-wrapper-script", 
+            "text": "Use the newt wrapper script to invoke newt.  Create the following file, name it newt , make it executable, and put it in your path. This will allow you to run newt as if it was natively installed.  You can now follow the normal tutorials using the newt wrapper script.  #!/bin/bash  if   [   $1   =   debug   ]   ||   [   $1   =   run   ]  then \n     ti= -ti  fi \n\ndocker run -e  NEWT_USER= $( id -u )  -e  NEWT_GROUP= $( id -g )  -e  NEWT_HOST= $( uname )   $ti  --rm --device = /dev/bus/usb --privileged -v  $(pwd) :/workspace -w /workspace mynewt/newt:latest /newt  $@    Note 1:  Remember to point to the correct subdirectory level when invoking  newt . For example, invoke it using  ../newt  in the example below.  user@~/dockertest$ ls\nmyproj  newt\nuser@~/dockertest$ cd myproj user@~/dockertest/myproj$ ../newt version Apache Newt (incubating) version: 0.8.0-b2   Note 2:  You can upgrade your container by running  docker pull mynewt/newt:latest  when updates are
  made available.", 
+            "title": "Use the newt wrapper script"
+        }, 
+        {
+            "location": "/os/get_started/docker/#enable-usb2-support-for-mac-or-windows", 
+            "text": "If you plan on loading your application on an actual device, do the steps below.", 
+            "title": "Enable USB2 Support for Mac or Windows"
+        }, 
+        {
+            "location": "/os/get_started/docker/#install-virtualbox-extension-pack", 
+            "text": "Docker uses a VirtualBox Linux VM to run containers.  A free VirtualBox\nextension pack is required to enable USB2 support.  Download the  VirtualBox\n5.0.16 Oracle VM VirtualBox Extension\nPack \nand double click to install", 
+            "title": "Install VirtualBox extension pack"
+        }, 
+        {
+            "location": "/os/get_started/docker/#enable-usb2-and-select-your-device", 
+            "text": "The \"default\" VM created by docker-machine must first be stopped before you\n  can enable USB2.  You have two options:   Run the command  docker-machine stop default  in the terminal window or  Use the VirtualBox UI. Right click on  default  -  Close -  Power Off     Enable USB2 using the VirtualBox UI. Select the \"default\"\n  VM- Settings- Ports- USB2 to enable USB2.   Add your device to the USB Device\n  Filters to make the device visible in the docker container.  See the image below.      Restart the \"default\" VM. You have two options:  Run  docker-machine start default  in the terminal window or   Use the VirtualBox UI. Make sure the \"default\" machine is highlighted. Click the green \"Start\" button. Select \"Headless Start\".      Note 3 : When working with actual hardware, remember that each board has an ID. If you swap boards and do not refresh the USB Device Filter on the VirtualBox UI, the ID might be stale and the Docker instance may not be abl
 e to see the board correctly. For example, you may see an error message like  Error: unable to find CMSIS-DAP device  when you try to load or run an image on the board. In that case, you need to click on the USB link in VirtualBox UI, remove the existing USB Device Filter (e.g. \"Atmel Corp. EDBG CMSIS-DAP[0101]\") by clicking on the \"Removes selected USB filter\" button, and add a new filter by clicking on the \"Adds new USB filter\" button.", 
+            "title": "Enable USB2 and select your device"
+        }, 
+        {
             "location": "/os/get_started/project_create/", 
             "text": "Create Your First Mynewt Project\n\n\nThis page shows how to create a Mynewt Project using the \nnewt\n command-line tool.\n\n\n\n\nPre-Requisites\n\n\n\n\nNewt:\n\n\nIf you have taken the Docker route, you have already installed Newt.\n\n\nIf you have taken the native install route, you have to ensure that you have installed the Newt tool following the instructions for \nMac\n or \nLinux\n as appropriate, and that the \nnewt\n command is in your system path. \n\n\n\n\n\n\nYou must have Internet connectivity to fetch remote Mynewt components.\n\n\nYou must \ninstall the compiler tools\n to \nsupport native compiling to build the project this tutorial creates.  \n\n\n\n\n\n\nNewt New\n\n\nChoose a project name. For this tutorial we will call this project \nmyproj\n.\nEnter the \nnewt new myproj\n command. \n\n\n$ newt new myproj\nDownloading project skeleton from apache/incubator-mynewt-blinky...\nInstalling skeleton in myproj...\nProject myproj successfully crea
 ted.\n\n\n\n\n\n\n\nNewt populates this new project with a base skeleton of a new Apache Mynewt \nproject.  It has the following structure. \n\n\nNote\n: If you do not have \ntree\n, install it by running \nbrew install tree\n.\n\n\n$ cd myproj\n$ tree \n.\n\u251c\u2500\u2500 DISCLAIMER\n\u251c\u2500\u2500 LICENSE\n\u251c\u2500\u2500 NOTICE\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 apps\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 blinky\n\u2502\u00a0\u00a0     \u251c\u2500\u2500 pkg.yml\n\u2502\u00a0\u00a0     \u2514\u2500\u2500 src\n\u2502\u00a0\u00a0         \u2514\u2500\u2500 main.c\n\u251c\u2500\u2500 project.yml\n\u2514\u2500\u2500 targets\n    \u251c\u2500\u2500 my_blinky_sim\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 pkg.yml\n    \u2502\u00a0\u00a0 \u2514\u2500\u2500 target.yml\n    \u2514\u2500\u2500 unittest\n        \u251c\u2500\u2500 pkg.yml\n        \u2514\u2500\u2500 target.yml\n\n6 directories, 11 files\n\n\n\n\n\n\n\nThe Newt tool has installed the base files for a
  project comprising the following:\n\n\n\n\nThe file \nproject.yml\n contains the repository list that the project uses to fetch\nits packages. Your project is a collection of repositories.  In this case, the project just\ncomprises the core mynewt repository.  Later you will add more repositories\nto include other mynewt components.\n\n\nThe file \napps/blinky/pkg.yml\n contains the description of your application\nand its package dependencies.\n\n\nA \ntarget\n directory containing \nmy_blinky_sim\n, a target descriptor used to\nbuild a version of myproj.  Use \nnewt target show\n to see available build \ntargets.\n\n\nA non-buildable target called \nunittest\n.  This is used internally by \nnewt\n and is not a formal build target.\n\n\n\n\nNOTE:\n The actual code and package files are not installed \n(except the template for \nmain.c\n).  See the next step for installing the packages.\n\n\nNOTE:\n By default newt uses the code in the master branch. This is the latest stable\ncode
  for newt. If you need to use a different branch, you can set this in the project.yml\nfile. \n\n\nrepository.apache-mynewt-core:\n    type: github\n    vers: 1-latest\n    user: apache\n    repo: incubator-mynewt-core\n\n\n\n\n\nChanging to 1-dev will put you on the develop branch. \nThe Develop Branch may not be stable and you may encounter bugs or other problems.\n\n\n\n\nNewt Install\n\n\nOnce you've switched into your new project's directory, the next step is to fetch\nany dependencies this project has.  By default, all Newt projects rely on a\nsingle remote repository, apache-mynewt-core.  The \nnewt install\n command will\nfetch this repository.\n\n\n$ newt install\napache-mynewt-core\n\n\n\n\n\nNOTE:\n \napache-mynewt-core\n may take a while to download.  To see progress,\nuse the \n-v\n (verbose) option to install. \n\n\n\n\nOnce \nnewt install\n has successfully finished, the contents of \napache-mynewt-core\n will have been downloaded into your local directory.  You can v
 iew them by issuing the following commands in the base directory of the new project. The actual output will depend on what is in the latest 'master' branch you have pulled from.\n\n\n$ tree -L 2 repos/apache-mynewt-core/\n\nrepos/apache-mynewt-core/\n\u251c\u2500\u2500 CODING_STANDARDS.md\n\u251c\u2500\u2500 DISCLAIMER\n\u251c\u2500\u2500 LICENSE\n\u251c\u2500\u2500 NOTICE\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 RELEASE_NOTES.md\n\u251c\u2500\u2500 apps\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blecent\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blehci\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleprph\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleprph_oic\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blesplit\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bletest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bletiny\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleuart\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fat2native\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ffs2native\n\u25
 02\u00a0\u00a0 \u251c\u2500\u2500 ocf_sample\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 slinky\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 slinky_oic\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 spitest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 splitty\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 testbench\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 timtest\n\u251c\u2500\u2500 boot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot_serial\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bootutil\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 split\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 split_app\n\u251c\u2500\u2500 compiler\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 arm-none-eabi-m0\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 arm-none-eabi-m4\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 gdbmacros\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mips\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 sim\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 sim-mips\n\u251c\u2500\u2500 crypto\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mbedtls\n\u25
 02\u00a0\u00a0 \u2514\u2500\u2500 tinycrypt\n\u251c\u2500\u2500 docs\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 doxygen.xml\n\u251c\u2500\u2500 encoding\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 base64\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cborattr\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 json\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 tinycbor\n\u251c\u2500\u2500 fs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 disk\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fatfs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fcb\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fs\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 nffs\n\u251c\u2500\u2500 hw\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bsp\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cmsis-core\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 drivers\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 hal\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mcu\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 scripts\n\u251c\u2500\u2500 kernel\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 os\n\u251c\u2500\u2500 libc\n\u2502\u00a0\u00a0 \u2514\u250
 0\u2500 baselibc\n\u251c\u2500\u2500 mgmt\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 imgmgr\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mgmt\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 newtmgr\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 oicmgr\n\u251c\u2500\u2500 net\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ip\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 nimble\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 oic\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 wifi\n\u251c\u2500\u2500 project.yml\n\u251c\u2500\u2500 repository.yml\n\u251c\u2500\u2500 sys\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 config\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 console\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 coredump\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 defs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 flash_map\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 id\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 log\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mfg\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 reboot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 shell\n\u2502\u00a0\u00a0 \u251c\u2
 500\u2500 stats\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 sysinit\n\u251c\u2500\u2500 targets\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 unittest\n\u251c\u2500\u2500 test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 crash_test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 flash_test\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 runtest\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 testutil\n\u251c\u2500\u2500 time\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 datetime\n\u2514\u2500\u2500 util\n    \u251c\u2500\u2500 cbmem\n    \u251c\u2500\u2500 crc\n    \u2514\u2500\u2500 mem\n\n94 directories, 9 files\n\n\n\n\n\nAs you can see, the core of the Apache Mynewt operating system has been brought \ninto your local directory. \n\n\n\n\nTest the project's packages\n\n\nYou have already built your first basic project. You can ask Newt to execute the unit tests in a package. For example, to test the \nsys/config\n package in the \napache-mynewt-core\n repo, call newt as shown below.\n\n\n$ newt test @apache-mynewt-core/sys/config\
 nTesting package @apache-mynewt-core/sys/config/test-fcb\nCompiling bootutil_misc.c\nCompiling image_ec.c\nCompiling image_rsa.c\nCompiling image_validate.c\n\n    ...\n\nLinking ~/dev/myproj/bin/targets/unittest/sys_config_test-fcb/app/sys/config/test-fcb/sys_config_test-fcb.elf\nExecuting test: ~/dev/myproj/bin/targets/unittest/sys_config_test-fcb/app/sys/config/test-fcb/sys_config_test-fcb.elf\nTesting package @apache-mynewt-core/sys/config/test-nffs\nCompiling repos/apache-mynewt-core/encoding/base64/src/hex.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_cli.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_dirent.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_mkdir.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_mount.c\nCompiling repos/apache-mynewt-core/encoding/base64/src/base64.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_file.c\nCompiling repos/apache-mynewt-core/fs/disk/src/disk.c\nCompiling repos/apache-mynewt-core/fs/fs/src/fs_nmgr.c\nCompiling repos/a
 pache-mynewt-core/fs/fs/src/fsutil.c\nCompiling repos/apache-mynewt-core/fs/nffs/src/nffs.c\n\n     ...\n\nLinking ~/dev/myproj/bin/targets/unittest/sys_config_test-nffs/app/sys/config/test-nffs/sys_config_test-nffs.elf\nExecuting test: ~/dev/myproj/bin/targets/unittest/sys_config_test-nffs/app/sys/config/test-nffs/sys_config_test-nffs.elf\nPassed tests: [sys/config/test-fcb sys/config/test-nffs]\nAll tests passed\n\n\n\n\n\nNOTE:\n If you've installed the latest gcc using homebrew on your Mac, you will likely be running gcc-6. Make sure you have adjusted the compiler.yml configuration to reflect that as noted in \nNative Install Option\n. You can choose to downgrade to gcc-5 in order to use the default gcc compiler configuration for MyNewt.\n\n\nNOTE:\n If you are running the standard gcc for 64-bit machines, it does not support 32-bit. In that case you will see compilation errors. You need to install multiboot gcc (e.g. gcc-multilib if you running on a 64-bit Ubuntu).\n\n\n$ brew 
 uninstall gcc-6\n$ brew link gcc-5\n\n\n\n\n\n\n\nTo test all the packages in a project, specify \nall\n instead of the package name.\n\n\n$ newt test all\nTesting package @apache-mynewt-core/boot/boot_serial/test\nCompiling repos/apache-mynewt-core/boot/boot_serial/test/src/boot_test.c\nCompiling repos/apache-mynewt-core/boot/boot_serial/test/src/testcases/boot_serial_setup.c\n\n     ...\n\nLinking ~/dev/myproj/bin/targets/unittest/boot_boot_serial_test/app/boot/boot_serial/test/boot_boot_serial_test.elf\n\n...lots of compiling and testing...\n\nLinking ~/dev/myproj/bin/targets/unittest/util_cbmem_test/app/util/cbmem/test/util_cbmem_test.elf\nExecuting test: ~/dev/myproj/bin/targets/unittest/util_cbmem_test/app/util/cbmem/test/util_cbmem_test.elf\nPassed tests: [boot/boot_serial/test boot/bootutil/test crypto/mbedtls/test encoding/base64/test encoding/cborattr/test encoding/json/test fs/fcb/test fs/nffs/test kernel/os/test net/ip/mn_socket/test net/nimble/host/test net/oic/test sys
 /config/test-fcb sys/config/test-nffs sys/flash_map/test sys/log/full/test util/cbmem/test]\nAll tests passed\n\n\n\n\n\n\n\nBuild the Project\n\n\nTo build and run your new application, simply issue the following command:\n\n\n$ newt build my_blinky_sim \nBuilding target targets/my_blinky_sim\nCompiling repos/apache-mynewt-core/hw/hal/src/hal_common.c\nCompiling repos/apache-mynewt-core/hw/drivers/uart/src/uart.c\nCompiling repos/apache-mynewt-core/hw/hal/src/hal_flash.c\nCompiling repos/apache-mynewt-core/hw/bsp/native/src/hal_bsp.c\nCompiling repos/apache-mynewt-core/hw/drivers/uart/uart_hal/src/uart_hal.c\nCompiling apps/blinky/src/main.c\n\n    ...\n\n\nArchiving sys_mfg.a\nArchiving sys_sysinit.a\nArchiving util_mem.a\nLinking ~/dev/myproj/bin/targets/my_blinky_sim/app/apps/blinky/blinky.elf\nTarget successfully built: targets/my_blinky_sim\n\n\n\n\n\n\n\nRun the Project\n\n\nYou can run the simulated version of your project and see the simulated LED\nblink. If you are using n
 ewt docker, use \nnewt run\n to run the simulated binary.\n\n\n$ newt run my_blinky_sim\nLoading app image into slot 1\n    ...\nDebugging ~/dev/myproj/bin/targets/my_blinky_sim/app/apps/blinky/blinky.elf\n    ...\nReading symbols from /bin/targets/my_blinky_sim/app/apps/blinky/blinky.elf...done.\n(gdb)\n\n\n\n\n\nType \nr\n at the \n(gdb)\n prompt to run the project. You will see an output indicating that the hal_gpio pin is toggling between 1 and 0 in a simulated blink.\n\n\nIf you natively install the toolchain, you can either use \nnewt run\n or call the binary directly. Generally, \nnewt run\n is the expected way to call things.\n\n\n$ ./bin/targets/my_blinky_sim/app/apps/blinky/blinky.elf\nhal_gpio set pin  1 to 0\n\n\n\n\n\n\n\nComplete\n\n\nCongratulations, you have created your first project!  The blinky application\nis not terribly exciting when it is run in the simulator, as there is no LED to\nblink.  Apache Mynewt has a lot more functionality than just running simulated
 \napplications.  It provides all the features you'll need to cross-compile your\napplication, run it on real hardware and develop a full featured application.\n\n\nIf you're interested in learning more, a good next step is to dig in to one of\nthe \ntutorials\n and get a Mynewt project running on real hardware.\n\n\nHappy Hacking!", 
             "title": "Create Your First Project"
@@ -1227,7 +1217,7 @@
         }, 
         {
             "location": "/os/tutorials/add_newtmgr/", 
-            "text": "Enabling Newt Manager in Your Application\n\n\n\nIn order for your application to communicate with the newtmgr tool and process Newt Manager commands, you must \nenable Newt Manager device management and the support to process Newt Manager commands \nin your application.  This tutorial explains how to add the support to your application.\n\n\nThis tutorial assumes that you have read the \nDevice Management with Newt Manager\n\nguide and are familiar with the \nnewtmgr\n and \noicmgr\n frameworks and all the options that are available \nto customize your application.\n\n\nThis tutorial shows you how to configure your application to:\n\n\n\n\nUse the newtmgr framework.\n\n\nUse serial transport to communicate with the newtmgr tool.\n\n\nSupport all Newt Manager commands.\n\n\n\n\nSee \nOther Configuration Options\n on how to customize your application.\n\n\n\n\nPrerequisites\n\n\nEnsure that you have met the following prerequisites before continuing with this tuto
 rial:\n\n\n\n\nInstall the \nnewt tool\n. \n\n\nInstall the \nnewtmgr tool\n.\n\n\nHave Internet connectivity to fetch remote Mynewt components.\n\n\nInstall the \ncompiler tools\n to \nsupport native compiling to build the project this tutorial creates.  \n\n\nHave a cable to establish a serial USB connection between the board and the laptop.\n\n\n\n\n\n\nUse an Existing Project\n\n\nWe assume that you have worked through at least some of the other tutorials and have an existing project.\nIn this example, we modify the \nble_tiny\n project to enable Newt Manager support. \nWe call our application \nmyble\n.  You can create the application using any name you choose. \n\n\nModify Package Dependencies and Configurations\n\n\nAdd the following packages to the \npkg.deps\n parameter in your target or application \npkg.yml\n file:\n\n\npkg.deps:\n    - mgmt/newtmgr\n    - mgmt/newtmgr/transport/nmgr_shell\n    - mgmt/imgmgr\n    - sys/log/full\n    - sys/stats/full\n    - sys/config\n   
  - test/crash_test\n    - test/runtest\n\n\n\n\n\nEach package provides the following Newt Manager functionality:\n\n\n\n\nmgmt/newtmgr\n: Supports the newtmgr framework and the \nNewt Manager \necho\n, \ntaskstats\n \nmpstats\n, \ndatetime\n, and \nreset\n commands.\n\n\nmgmt/newtmgr/transport/nmgr_shell\n: Supports serial transport.\n\n\nmgmt/imgmgr\n: Supports the \nnewtmgr image\n command \n\n\nsys/log/full\n : Supports the \nnewtmgr log\n command.\n\n\nsys/stats/full\n: Supports the \nnewtmgr stat\n command. \n\n\nsys/config\n: Supports the \nnewtmgr config\n command. \n\n\ntest/crash_test\n: Supports the \nnewtmgr crash\n command. \n\n\ntest/runtest\n: Supports the \nnewt run\n command.\n\n\n\n\nAdd the following configuration setting values to the \nsyscfg.vals\n parameter in the target or \napplication \nsyscfg.yml\n file:\n\n\nsyscfg.vals:\n    LOG_NEWTMGR: 1\n    STATS_NEWTMGR: 1\n    CONFIG_NEWTMGR: 1\n    CRASH_TEST_NEWTMGR: 1\n    RUNTEST_NEWTMGR: 1\n    SHELL_TASK: 1\n
 \n\n\n\n\nThe first five configuration settings enable support for the Newt Manager \nlog\n, \nstat\n, \nconfig\n, \ncrash\n, \nand \nrun\n commands. The \nSHELL_TASK\n setting enables the shell for serial transport.\n\n\nNote that you may need to override additional configuration settings that are specific to each package to customize the \npackage functionality.\n\n\n\n\nModify the Source\n\n\nBy default, the \nmgmt\n package uses the Mynewt default event queue to receive request events from the newtmgr tool. These events are processed in the context of the application main task. \n\n\nYou can specify a different event queue for the package to use.  If you choose to use a dedicated event queue, you must create a task to process events from this event queue.  The \nmgmt\n package executes and handles newtmgr request events in the context of this task.  The \nmgmt\n package exports the \nmgmt_evq_set()\n function that allows you to specify an event queue. \n\n\nThis example uses the
  Mynewt default event queue and you do not need to modify your application source.  \n\n\nIf you choose to use a different event queue, see \nEvents and Event Queues\n for details on how to initialize an event queue and create a task to process the events. You will also need to modify your \nmain.c\n to add the call to the \nmgmt_evq_set()\n function as follows:\n\n\nAdd the \nmgmt/mgmt.h\n header file: \n\n\n#include \nmgmt/mgmt.h\n\n\n\n\n\n\n\nAdd the call to specify the event queue. In the \nmain()\n function, scroll down to the  \nwhile (1)\n loop and add the following statement above the loop: \n\n\nmgmt_evq_set(\nmy_eventq)\n\n\n\n\n\nwhere \nmy_eventq\n is an event queue that you have initialized.\n\n\nBuild the Targets\n\n\nBuild the two targets as follows:\n\n\n$ newt build nrf52_boot\n\nsnip\n\nApp successfully built: ./bin/nrf52_boot/apps/boot/boot.elf\n$ newt build myble\nCompiling hci_common.c\nCompiling util.c\nArchiving nimble.a\nCompiling os.c\n\nsnip\n\n\n\n\n\n\n\
 n\nCreate the Application Image\n\n\nGenerate a signed application image for the \nmyble\n target. You can use any version number you choose.\n\n\n$ newt create-image myble 1.0.0\nApp image successfully generated: ./bin/makerbeacon/apps/bletiny/bletiny.img\nBuild manifest: ./bin/makerbeacon/apps/bletiny/manifest.json\n\n\n\n\n\n\n\nLoad the Image\n\n\nEnsure the USB connector is in place and the power LED on the board is lit. Turn the power switch on your board off, \nthen back on to reset the board after loading the image.\n\n\n$ newt load nrf52_boot\n$ newt load myble\n\n\n\n\n\nSet Up a Connection Profile\n\n\nThe newtmgr tool requires a connection profile in order to connect to your board. If you have not done so, \nfollow the \ninstructions\n for setting up your connection profile.\n\n\n\n\nConnecting with Your Application\n\n\nOnce you have a connection profile set up, you can connect to your device with \nnewtmgr -c myconn \ncommand\n to run commands in your application. \n\n
 \nIssue the \necho\n command to ensure that your application is communicating with the newtmgr tool:\n\n\n# newtmgr -c myconn echo hello\nhello\n\n\n\n\n\nTest your application to ensure that it can process a Newt Manager command that is supported by a different package.\nIssue the \nstat\n command to see the BLE stats. \n\n\nnewtmgr -c myconn stat ble_att\nReturn Code = 0\nStats Name: ble_att\n  prep_write_req_tx: 0\n  indicate_req_tx: 0\n  write_rsp_tx: 0\n  find_info_req_tx: 0\n  read_rsp_rx: 0\n  read_group_type_rsp_tx: 0\n  indicate_req_rx: 0\n  find_type_value_rsp_tx: 0\n\n       ...\n\n  read_req_rx: 0\n  read_type_req_rx: 0\n  notify_req_tx: 0\n  mtu_rsp_tx: 0\n  find_type_value_req_rx: 0\n  read_blob_rsp_rx: 0\n  read_group_type_req_tx: 0\n  exec_write_req_tx: 0\n\n\n\n\n\nYour application is now able to communicate with the newtmgr tool.\n\n\nOther Configuration Options\n\n\nThis section explains how to customize your application to use other Newt Manager protocol options.
 \n\n\nNewtmgr Framework Transport Protocol

<TRUNCATED>


[03/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/core_os/cputime/os_cputime_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/cputime/os_cputime_init/index.html b/latest/os/core_os/cputime/os_cputime_init/index.html
index 1b86ddb..622f463 100644
--- a/latest/os/core_os/cputime/os_cputime_init/index.html
+++ b/latest/os/core_os/cputime/os_cputime_init/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_nsecs_to_ticks/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/cputime/os_cputime_nsecs_to_ticks/index.html b/latest/os/core_os/cputime/os_cputime_nsecs_to_ticks/index.html
index bb15a1d..0461c75 100644
--- a/latest/os/core_os/cputime/os_cputime_nsecs_to_ticks/index.html
+++ b/latest/os/core_os/cputime/os_cputime_nsecs_to_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_ticks_to_nsecs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/cputime/os_cputime_ticks_to_nsecs/index.html b/latest/os/core_os/cputime/os_cputime_ticks_to_nsecs/index.html
index ee3e9fa..768926a 100644
--- a/latest/os/core_os/cputime/os_cputime_ticks_to_nsecs/index.html
+++ b/latest/os/core_os/cputime/os_cputime_ticks_to_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_ticks_to_usecs/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/cputime/os_cputime_ticks_to_usecs/index.html b/latest/os/core_os/cputime/os_cputime_ticks_to_usecs/index.html
index 97a094a..8967f4e 100644
--- a/latest/os/core_os/cputime/os_cputime_ticks_to_usecs/index.html
+++ b/latest/os/core_os/cputime/os_cputime_ticks_to_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_timer_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/cputime/os_cputime_timer_init/index.html b/latest/os/core_os/cputime/os_cputime_timer_init/index.html
index be11832..d26515f 100644
--- a/latest/os/core_os/cputime/os_cputime_timer_init/index.html
+++ b/latest/os/core_os/cputime/os_cputime_timer_init/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_timer_relative/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/cputime/os_cputime_timer_relative/index.html b/latest/os/core_os/cputime/os_cputime_timer_relative/index.html
index 68a60d6..5bcbcbb 100644
--- a/latest/os/core_os/cputime/os_cputime_timer_relative/index.html
+++ b/latest/os/core_os/cputime/os_cputime_timer_relative/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_timer_start/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/cputime/os_cputime_timer_start/index.html b/latest/os/core_os/cputime/os_cputime_timer_start/index.html
index a9a1221..2939c19 100644
--- a/latest/os/core_os/cputime/os_cputime_timer_start/index.html
+++ b/latest/os/core_os/cputime/os_cputime_timer_start/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_timer_stop/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/cputime/os_cputime_timer_stop/index.html b/latest/os/core_os/cputime/os_cputime_timer_stop/index.html
index 71c2e56..dbea6ad 100644
--- a/latest/os/core_os/cputime/os_cputime_timer_stop/index.html
+++ b/latest/os/core_os/cputime/os_cputime_timer_stop/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_usecs_to_ticks/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/cputime/os_cputime_usecs_to_ticks/index.html b/latest/os/core_os/cputime/os_cputime_usecs_to_ticks/index.html
index f735715..07473a5 100644
--- a/latest/os/core_os/cputime/os_cputime_usecs_to_ticks/index.html
+++ b/latest/os/core_os/cputime/os_cputime_usecs_to_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/event_queue/event_queue/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/event_queue/index.html b/latest/os/core_os/event_queue/event_queue/index.html
index c31828c..0d02e17 100644
--- a/latest/os/core_os/event_queue/event_queue/index.html
+++ b/latest/os/core_os/event_queue/event_queue/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/event_queue/os_eventq_designate/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_designate/index.html b/latest/os/core_os/event_queue/os_eventq_designate/index.html
index 8bdee16..db897ed 100644
--- a/latest/os/core_os/event_queue/os_eventq_designate/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_designate/index.html
@@ -734,7 +734,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/event_queue/os_eventq_dflt_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_dflt_get/index.html b/latest/os/core_os/event_queue/os_eventq_dflt_get/index.html
index 5973c04..b246463 100644
--- a/latest/os/core_os/event_queue/os_eventq_dflt_get/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_dflt_get/index.html
@@ -734,7 +734,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/event_queue/os_eventq_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_get/index.html b/latest/os/core_os/event_queue/os_eventq_get/index.html
index 47efae6..6842ce1 100644
--- a/latest/os/core_os/event_queue/os_eventq_get/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_get/index.html
@@ -734,7 +734,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/event_queue/os_eventq_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_init/index.html b/latest/os/core_os/event_queue/os_eventq_init/index.html
index bed9412..46af50a 100644
--- a/latest/os/core_os/event_queue/os_eventq_init/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_init/index.html
@@ -734,7 +734,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/event_queue/os_eventq_inited/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_inited/index.html b/latest/os/core_os/event_queue/os_eventq_inited/index.html
index 765ef2d..0387282 100644
--- a/latest/os/core_os/event_queue/os_eventq_inited/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_inited/index.html
@@ -734,7 +734,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/event_queue/os_eventq_put/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_put/index.html b/latest/os/core_os/event_queue/os_eventq_put/index.html
index 45ae919..a3ef897 100644
--- a/latest/os/core_os/event_queue/os_eventq_put/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_put/index.html
@@ -734,7 +734,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/event_queue/os_eventq_remove/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_remove/index.html b/latest/os/core_os/event_queue/os_eventq_remove/index.html
index cde0d89..dee58f4 100644
--- a/latest/os/core_os/event_queue/os_eventq_remove/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_remove/index.html
@@ -734,7 +734,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/event_queue/os_eventq_run/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/event_queue/os_eventq_run/index.html b/latest/os/core_os/event_queue/os_eventq_run/index.html
index 9b86ac5..f804871 100644
--- a/latest/os/core_os/event_queue/os_eventq_run/index.html
+++ b/latest/os/core_os/event_queue/os_eventq_run/index.html
@@ -734,7 +734,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/heap/heap/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/heap/heap/index.html b/latest/os/core_os/heap/heap/index.html
index c9afd1f..627bbe5 100644
--- a/latest/os/core_os/heap/heap/index.html
+++ b/latest/os/core_os/heap/heap/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/heap/os_free/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/heap/os_free/index.html b/latest/os/core_os/heap/os_free/index.html
index c6bcce6..f534552 100644
--- a/latest/os/core_os/heap/os_free/index.html
+++ b/latest/os/core_os/heap/os_free/index.html
@@ -694,7 +694,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/heap/os_malloc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/heap/os_malloc/index.html b/latest/os/core_os/heap/os_malloc/index.html
index 5925c27..4ffa883 100644
--- a/latest/os/core_os/heap/os_malloc/index.html
+++ b/latest/os/core_os/heap/os_malloc/index.html
@@ -694,7 +694,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/heap/os_realloc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/heap/os_realloc/index.html b/latest/os/core_os/heap/os_realloc/index.html
index db3734e..a3d4996 100644
--- a/latest/os/core_os/heap/os_realloc/index.html
+++ b/latest/os/core_os/heap/os_realloc/index.html
@@ -694,7 +694,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/mbuf/OS_MBUF_DATA/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_DATA/index.html b/latest/os/core_os/mbuf/OS_MBUF_DATA/index.html
index 7ea9f1c..a474bb6 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_DATA/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_DATA/index.html
@@ -891,7 +891,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/mbuf/OS_MBUF_LEADINGSPACE/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html b/latest/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
index e8c07f6..d4d2fd1 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_LEADINGSPACE/index.html
@@ -891,7 +891,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/mbuf/OS_MBUF_PKTHDR/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html b/latest/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
index c54866e..6a6d6a1 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_PKTHDR/index.html
@@ -891,7 +891,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/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html b/latest/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
index 2c53472..e48158e 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_PKTHDR_TO_MBUF/index.html
@@ -891,7 +891,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/mbuf/OS_MBUF_PKTLEN/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html b/latest/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
index f695e81..4a543c1 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_PKTLEN/index.html
@@ -891,7 +891,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/mbuf/OS_MBUF_TRAILINGSPACE/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html b/latest/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
index 63c8726..60e5f77 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_TRAILINGSPACE/index.html
@@ -891,7 +891,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/mbuf/OS_MBUF_USRHDR/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_USRHDR/index.html b/latest/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
index efcc7f3..fb4e98d 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_USRHDR/index.html
@@ -891,7 +891,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/mbuf/OS_MBUF_USRHDR_LEN/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html b/latest/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
index 15ce254..bb07222 100644
--- a/latest/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
+++ b/latest/os/core_os/mbuf/OS_MBUF_USRHDR_LEN/index.html
@@ -891,7 +891,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/mbuf/mbuf/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/mbuf/index.html b/latest/os/core_os/mbuf/mbuf/index.html
index 3a0acf7..06dd53f 100644
--- a/latest/os/core_os/mbuf/mbuf/index.html
+++ b/latest/os/core_os/mbuf/mbuf/index.html
@@ -703,7 +703,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/mbuf/os_mbuf_adj/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_adj/index.html b/latest/os/core_os/mbuf/os_mbuf_adj/index.html
index a901862..5f45293 100644
--- a/latest/os/core_os/mbuf/os_mbuf_adj/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_adj/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_append/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_append/index.html b/latest/os/core_os/mbuf/os_mbuf_append/index.html
index 4782477..6be9667 100644
--- a/latest/os/core_os/mbuf/os_mbuf_append/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_append/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_concat/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_concat/index.html b/latest/os/core_os/mbuf/os_mbuf_concat/index.html
index 0a2415d..d2ffd0f 100644
--- a/latest/os/core_os/mbuf/os_mbuf_concat/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_concat/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_copydata/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_copydata/index.html b/latest/os/core_os/mbuf/os_mbuf_copydata/index.html
index 0da23c3..b627f0d 100644
--- a/latest/os/core_os/mbuf/os_mbuf_copydata/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_copydata/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_copyinto/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_copyinto/index.html b/latest/os/core_os/mbuf/os_mbuf_copyinto/index.html
index 0863c07..f4b9e12 100644
--- a/latest/os/core_os/mbuf/os_mbuf_copyinto/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_copyinto/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_dup/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_dup/index.html b/latest/os/core_os/mbuf/os_mbuf_dup/index.html
index e33084f..e5b95d3 100644
--- a/latest/os/core_os/mbuf/os_mbuf_dup/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_dup/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_extend/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_extend/index.html b/latest/os/core_os/mbuf/os_mbuf_extend/index.html
index 352ec42..a4072aa 100644
--- a/latest/os/core_os/mbuf/os_mbuf_extend/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_extend/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_free_chain/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_free_chain/index.html b/latest/os/core_os/mbuf/os_mbuf_free_chain/index.html
index 1a78fed..857d5ce 100644
--- a/latest/os/core_os/mbuf/os_mbuf_free_chain/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_free_chain/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_get/index.html b/latest/os/core_os/mbuf/os_mbuf_get/index.html
index 3bf0d02..44aeb8a 100644
--- a/latest/os/core_os/mbuf/os_mbuf_get/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_get/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_get_pkthdr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html b/latest/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
index 14ad137..d85e718 100644
--- a/latest/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_get_pkthdr/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_memcmp/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_memcmp/index.html b/latest/os/core_os/mbuf/os_mbuf_memcmp/index.html
index f53bb4d..9ca9aec 100644
--- a/latest/os/core_os/mbuf/os_mbuf_memcmp/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_memcmp/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_off/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_off/index.html b/latest/os/core_os/mbuf/os_mbuf_off/index.html
index 5f3f675..8427c56 100644
--- a/latest/os/core_os/mbuf/os_mbuf_off/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_off/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_pool_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_pool_init/index.html b/latest/os/core_os/mbuf/os_mbuf_pool_init/index.html
index 757b477..ca04027 100644
--- a/latest/os/core_os/mbuf/os_mbuf_pool_init/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_pool_init/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_prepend/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_prepend/index.html b/latest/os/core_os/mbuf/os_mbuf_prepend/index.html
index afb39ef..5227492 100644
--- a/latest/os/core_os/mbuf/os_mbuf_prepend/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_prepend/index.html
@@ -891,7 +891,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/mbuf/os_mbuf_pullup/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mbuf/os_mbuf_pullup/index.html b/latest/os/core_os/mbuf/os_mbuf_pullup/index.html
index 0677e68..94de8b9 100644
--- a/latest/os/core_os/mbuf/os_mbuf_pullup/index.html
+++ b/latest/os/core_os/mbuf/os_mbuf_pullup/index.html
@@ -891,7 +891,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/memory_pool/OS_MEMPOOL_BYTES/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html b/latest/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
index 3154d4f..de46fd5 100644
--- a/latest/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
+++ b/latest/os/core_os/memory_pool/OS_MEMPOOL_BYTES/index.html
@@ -718,7 +718,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/memory_pool/OS_MEMPOOL_SIZE/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html b/latest/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
index 412e099..e80e0a8 100644
--- a/latest/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
+++ b/latest/os/core_os/memory_pool/OS_MEMPOOL_SIZE/index.html
@@ -718,7 +718,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/memory_pool/memory_pool/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/memory_pool/index.html b/latest/os/core_os/memory_pool/memory_pool/index.html
index a393eb4..ed0a811 100644
--- a/latest/os/core_os/memory_pool/memory_pool/index.html
+++ b/latest/os/core_os/memory_pool/memory_pool/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/memory_pool/os_memblock_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/os_memblock_get/index.html b/latest/os/core_os/memory_pool/os_memblock_get/index.html
index 44e1b16..a79929b 100644
--- a/latest/os/core_os/memory_pool/os_memblock_get/index.html
+++ b/latest/os/core_os/memory_pool/os_memblock_get/index.html
@@ -718,7 +718,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/memory_pool/os_memblock_put/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/os_memblock_put/index.html b/latest/os/core_os/memory_pool/os_memblock_put/index.html
index 00fd268..ea74920 100644
--- a/latest/os/core_os/memory_pool/os_memblock_put/index.html
+++ b/latest/os/core_os/memory_pool/os_memblock_put/index.html
@@ -718,7 +718,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/memory_pool/os_mempool_info_get_next/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/os_mempool_info_get_next/index.html b/latest/os/core_os/memory_pool/os_mempool_info_get_next/index.html
index ab59cb3..73a9911 100644
--- a/latest/os/core_os/memory_pool/os_mempool_info_get_next/index.html
+++ b/latest/os/core_os/memory_pool/os_mempool_info_get_next/index.html
@@ -718,7 +718,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/memory_pool/os_mempool_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/memory_pool/os_mempool_init/index.html b/latest/os/core_os/memory_pool/os_mempool_init/index.html
index b66ed3e..eae7b6d 100644
--- a/latest/os/core_os/memory_pool/os_mempool_init/index.html
+++ b/latest/os/core_os/memory_pool/os_mempool_init/index.html
@@ -718,7 +718,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/mqueue/mqueue/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mqueue/mqueue/index.html b/latest/os/core_os/mqueue/mqueue/index.html
index 9ee6a82..b7d3fdb 100644
--- a/latest/os/core_os/mqueue/mqueue/index.html
+++ b/latest/os/core_os/mqueue/mqueue/index.html
@@ -703,7 +703,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/mqueue/os_mqueue_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mqueue/os_mqueue_get/index.html b/latest/os/core_os/mqueue/os_mqueue_get/index.html
index 916cf67..395ae67 100644
--- a/latest/os/core_os/mqueue/os_mqueue_get/index.html
+++ b/latest/os/core_os/mqueue/os_mqueue_get/index.html
@@ -731,7 +731,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/mqueue/os_mqueue_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mqueue/os_mqueue_init/index.html b/latest/os/core_os/mqueue/os_mqueue_init/index.html
index e5f55a7..ec8780d 100644
--- a/latest/os/core_os/mqueue/os_mqueue_init/index.html
+++ b/latest/os/core_os/mqueue/os_mqueue_init/index.html
@@ -731,7 +731,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/mqueue/os_mqueue_put/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mqueue/os_mqueue_put/index.html b/latest/os/core_os/mqueue/os_mqueue_put/index.html
index c4f34dd..49e6dd3 100644
--- a/latest/os/core_os/mqueue/os_mqueue_put/index.html
+++ b/latest/os/core_os/mqueue/os_mqueue_put/index.html
@@ -731,7 +731,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/msys/msys/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/msys/msys/index.html b/latest/os/core_os/msys/msys/index.html
index 43f8cd6..fc0efc4 100644
--- a/latest/os/core_os/msys/msys/index.html
+++ b/latest/os/core_os/msys/msys/index.html
@@ -703,7 +703,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/msys/os_msys_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/msys/os_msys_get/index.html b/latest/os/core_os/msys/os_msys_get/index.html
index b07784f..5b04640 100644
--- a/latest/os/core_os/msys/os_msys_get/index.html
+++ b/latest/os/core_os/msys/os_msys_get/index.html
@@ -739,7 +739,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/msys/os_msys_get_pkthdr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/msys/os_msys_get_pkthdr/index.html b/latest/os/core_os/msys/os_msys_get_pkthdr/index.html
index c95b580..7938a8f 100644
--- a/latest/os/core_os/msys/os_msys_get_pkthdr/index.html
+++ b/latest/os/core_os/msys/os_msys_get_pkthdr/index.html
@@ -739,7 +739,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/msys/os_msys_register/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/msys/os_msys_register/index.html b/latest/os/core_os/msys/os_msys_register/index.html
index b3a4b5f..ebb9c7f 100644
--- a/latest/os/core_os/msys/os_msys_register/index.html
+++ b/latest/os/core_os/msys/os_msys_register/index.html
@@ -739,7 +739,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/msys/os_msys_reset/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/msys/os_msys_reset/index.html b/latest/os/core_os/msys/os_msys_reset/index.html
index 267868d..6ecb757 100644
--- a/latest/os/core_os/msys/os_msys_reset/index.html
+++ b/latest/os/core_os/msys/os_msys_reset/index.html
@@ -739,7 +739,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/mutex/mutex/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mutex/mutex/index.html b/latest/os/core_os/mutex/mutex/index.html
index c8f91f7..7276021 100644
--- a/latest/os/core_os/mutex/mutex/index.html
+++ b/latest/os/core_os/mutex/mutex/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/mutex/os_mutex_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mutex/os_mutex_init/index.html b/latest/os/core_os/mutex/os_mutex_init/index.html
index c53d39f..275c2e0 100644
--- a/latest/os/core_os/mutex/os_mutex_init/index.html
+++ b/latest/os/core_os/mutex/os_mutex_init/index.html
@@ -694,7 +694,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/mutex/os_mutex_pend/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mutex/os_mutex_pend/index.html b/latest/os/core_os/mutex/os_mutex_pend/index.html
index 4af60a3..03bd8a5 100644
--- a/latest/os/core_os/mutex/os_mutex_pend/index.html
+++ b/latest/os/core_os/mutex/os_mutex_pend/index.html
@@ -694,7 +694,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/mutex/os_mutex_release/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mutex/os_mutex_release/index.html b/latest/os/core_os/mutex/os_mutex_release/index.html
index 85b0fe1..7d6041f 100644
--- a/latest/os/core_os/mutex/os_mutex_release/index.html
+++ b/latest/os/core_os/mutex/os_mutex_release/index.html
@@ -694,7 +694,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/mynewt_os/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/mynewt_os/index.html b/latest/os/core_os/mynewt_os/index.html
index b865f2f..a990562 100644
--- a/latest/os/core_os/mynewt_os/index.html
+++ b/latest/os/core_os/mynewt_os/index.html
@@ -647,7 +647,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/os_started/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/os_started/index.html b/latest/os/core_os/os_started/index.html
index d6ea74e..befa7bd 100644
--- a/latest/os/core_os/os_started/index.html
+++ b/latest/os/core_os/os_started/index.html
@@ -659,7 +659,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/porting/port_bsp/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/porting/port_bsp/index.html b/latest/os/core_os/porting/port_bsp/index.html
index 14c8dd8..769845d 100644
--- a/latest/os/core_os/porting/port_bsp/index.html
+++ b/latest/os/core_os/porting/port_bsp/index.html
@@ -521,7 +521,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/porting/port_cpu/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/porting/port_cpu/index.html b/latest/os/core_os/porting/port_cpu/index.html
index dce5dfc..f2ce064 100644
--- a/latest/os/core_os/porting/port_cpu/index.html
+++ b/latest/os/core_os/porting/port_cpu/index.html
@@ -521,7 +521,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/porting/port_mcu/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/porting/port_mcu/index.html b/latest/os/core_os/porting/port_mcu/index.html
index 34bdaf9..10aed7e 100644
--- a/latest/os/core_os/porting/port_mcu/index.html
+++ b/latest/os/core_os/porting/port_mcu/index.html
@@ -521,7 +521,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/porting/port_os/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/porting/port_os/index.html b/latest/os/core_os/porting/port_os/index.html
index 9c5249a..aeeb4aa 100644
--- a/latest/os/core_os/porting/port_os/index.html
+++ b/latest/os/core_os/porting/port_os/index.html
@@ -521,7 +521,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/sanity/os_sanity_check_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/os_sanity_check_init/index.html b/latest/os/core_os/sanity/os_sanity_check_init/index.html
index 573e95e..b5f7f8e 100644
--- a/latest/os/core_os/sanity/os_sanity_check_init/index.html
+++ b/latest/os/core_os/sanity/os_sanity_check_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/sanity/os_sanity_check_register/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/os_sanity_check_register/index.html b/latest/os/core_os/sanity/os_sanity_check_register/index.html
index 316ef6c..07ca409 100644
--- a/latest/os/core_os/sanity/os_sanity_check_register/index.html
+++ b/latest/os/core_os/sanity/os_sanity_check_register/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/sanity/os_sanity_check_reset/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/os_sanity_check_reset/index.html b/latest/os/core_os/sanity/os_sanity_check_reset/index.html
index 3940284..ac0eb9b 100644
--- a/latest/os/core_os/sanity/os_sanity_check_reset/index.html
+++ b/latest/os/core_os/sanity/os_sanity_check_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/sanity/os_sanity_task_checkin/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/os_sanity_task_checkin/index.html b/latest/os/core_os/sanity/os_sanity_task_checkin/index.html
index 76b616d..1dca070 100644
--- a/latest/os/core_os/sanity/os_sanity_task_checkin/index.html
+++ b/latest/os/core_os/sanity/os_sanity_task_checkin/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/sanity/os_sanity_task_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/os_sanity_task_init/index.html b/latest/os/core_os/sanity/os_sanity_task_init/index.html
index dd2d372..81628f9 100644
--- a/latest/os/core_os/sanity/os_sanity_task_init/index.html
+++ b/latest/os/core_os/sanity/os_sanity_task_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/sanity/sanity/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/sanity/sanity/index.html b/latest/os/core_os/sanity/sanity/index.html
index fd19658..b19ab5e 100644
--- a/latest/os/core_os/sanity/sanity/index.html
+++ b/latest/os/core_os/sanity/sanity/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/semaphore/os_sem_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/semaphore/os_sem_init/index.html b/latest/os/core_os/semaphore/os_sem_init/index.html
index 9f2723c..f073f55 100644
--- a/latest/os/core_os/semaphore/os_sem_init/index.html
+++ b/latest/os/core_os/semaphore/os_sem_init/index.html
@@ -694,7 +694,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/semaphore/os_sem_pend/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/semaphore/os_sem_pend/index.html b/latest/os/core_os/semaphore/os_sem_pend/index.html
index 88f77cc..9b9c35b 100644
--- a/latest/os/core_os/semaphore/os_sem_pend/index.html
+++ b/latest/os/core_os/semaphore/os_sem_pend/index.html
@@ -694,7 +694,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/semaphore/os_sem_release/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/semaphore/os_sem_release/index.html b/latest/os/core_os/semaphore/os_sem_release/index.html
index f2af6b9..535ea8e 100644
--- a/latest/os/core_os/semaphore/os_sem_release/index.html
+++ b/latest/os/core_os/semaphore/os_sem_release/index.html
@@ -694,7 +694,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/semaphore/semaphore/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/semaphore/semaphore/index.html b/latest/os/core_os/semaphore/semaphore/index.html
index e2f03e7..bfa1ab1 100644
--- a/latest/os/core_os/semaphore/semaphore/index.html
+++ b/latest/os/core_os/semaphore/semaphore/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/task/os_task_count/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/task/os_task_count/index.html b/latest/os/core_os/task/os_task_count/index.html
index 697f084..f1d0ef1 100644
--- a/latest/os/core_os/task/os_task_count/index.html
+++ b/latest/os/core_os/task/os_task_count/index.html
@@ -702,7 +702,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/task/os_task_info_get_next/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/task/os_task_info_get_next/index.html b/latest/os/core_os/task/os_task_info_get_next/index.html
index 9f98834..8031aac 100644
--- a/latest/os/core_os/task/os_task_info_get_next/index.html
+++ b/latest/os/core_os/task/os_task_info_get_next/index.html
@@ -702,7 +702,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/task/os_task_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/task/os_task_init/index.html b/latest/os/core_os/task/os_task_init/index.html
index 1a9bd74..c607b55 100644
--- a/latest/os/core_os/task/os_task_init/index.html
+++ b/latest/os/core_os/task/os_task_init/index.html
@@ -702,7 +702,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/task/os_task_remove/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/task/os_task_remove/index.html b/latest/os/core_os/task/os_task_remove/index.html
index f4297aa..5460ef6 100644
--- a/latest/os/core_os/task/os_task_remove/index.html
+++ b/latest/os/core_os/task/os_task_remove/index.html
@@ -702,7 +702,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/task/task/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/task/task/index.html b/latest/os/core_os/task/task/index.html
index 31185df..8c14471 100644
--- a/latest/os/core_os/task/task/index.html
+++ b/latest/os/core_os/task/task/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/time/os_get_uptime_usec/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_get_uptime_usec/index.html b/latest/os/core_os/time/os_get_uptime_usec/index.html
index df1f98d..0911068 100644
--- a/latest/os/core_os/time/os_get_uptime_usec/index.html
+++ b/latest/os/core_os/time/os_get_uptime_usec/index.html
@@ -726,7 +726,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/time/os_gettimeofday/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_gettimeofday/index.html b/latest/os/core_os/time/os_gettimeofday/index.html
index 6d64fcd..2df986b 100644
--- a/latest/os/core_os/time/os_gettimeofday/index.html
+++ b/latest/os/core_os/time/os_gettimeofday/index.html
@@ -726,7 +726,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/time/os_settimeofday/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_settimeofday/index.html b/latest/os/core_os/time/os_settimeofday/index.html
index b578d74..b2b1fac 100644
--- a/latest/os/core_os/time/os_settimeofday/index.html
+++ b/latest/os/core_os/time/os_settimeofday/index.html
@@ -726,7 +726,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/time/os_time/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_time/index.html b/latest/os/core_os/time/os_time/index.html
index fefa851..65151a7 100644
--- a/latest/os/core_os/time/os_time/index.html
+++ b/latest/os/core_os/time/os_time/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/time/os_time_advance/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_time_advance/index.html b/latest/os/core_os/time/os_time_advance/index.html
index d3245de..7bda62d 100644
--- a/latest/os/core_os/time/os_time_advance/index.html
+++ b/latest/os/core_os/time/os_time_advance/index.html
@@ -726,7 +726,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/time/os_time_delay/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_time_delay/index.html b/latest/os/core_os/time/os_time_delay/index.html
index 8b967fe..7478a92 100644
--- a/latest/os/core_os/time/os_time_delay/index.html
+++ b/latest/os/core_os/time/os_time_delay/index.html
@@ -726,7 +726,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/time/os_time_get/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_time_get/index.html b/latest/os/core_os/time/os_time_get/index.html
index 8176369..c482379 100644
--- a/latest/os/core_os/time/os_time_get/index.html
+++ b/latest/os/core_os/time/os_time_get/index.html
@@ -726,7 +726,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/time/os_time_ms_to_ticks/index.html
----------------------------------------------------------------------
diff --git a/latest/os/core_os/time/os_time_ms_to_ticks/index.html b/latest/os/core_os/time/os_time_ms_to_ticks/index.html
index 1508039..06d0131 100644
--- a/latest/os/core_os/time/os_time_ms_to_ticks/index.html
+++ b/latest/os/core_os/time/os_time_ms_to_ticks/index.html
@@ -726,7 +726,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/get_started/cross_tools/index.html
----------------------------------------------------------------------
diff --git a/latest/os/get_started/cross_tools/index.html b/latest/os/get_started/cross_tools/index.html
index 01494a1..9dcfe2b 100644
--- a/latest/os/get_started/cross_tools/index.html
+++ b/latest/os/get_started/cross_tools/index.html
@@ -211,14 +211,6 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
-    </li>
-
-              
-          
-              
-                
   
   
     <li ><a href="../native_tools/">Native install Option</a>
@@ -261,6 +253,14 @@
               
                 
     <li >
+      <a href="../docker/">Docker Container Option</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../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>
   
   
@@ -479,8 +479,8 @@ The direct link to the amd64 build is
     </li>
     <li class="pull-right">
     
-    <a href=../project_create/>
-        Next: Create Your First Project
+    <a href=../docker/>
+        Next: Docker Container Option
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/get_started/docker/index.html
----------------------------------------------------------------------
diff --git a/latest/os/get_started/docker/index.html b/latest/os/get_started/docker/index.html
index 936d1db..f5cbfbf 100644
--- a/latest/os/get_started/docker/index.html
+++ b/latest/os/get_started/docker/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li class="active">
-      <a href="./">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li class="active">
+      <a href="./">Docker Container Option</a>
     </li>
 
               
@@ -326,7 +326,7 @@
   
   
     <li><a href="
-  ../../../faq/how_to_edit_docs/
+  ../../../faq/go_env/
 ">Appendix</a>
   
   
@@ -457,16 +457,16 @@ and double click to install</p>
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../get_started/>
+    <a href=../cross_tools/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Basic Setup
+        Previous: Install Cross Tools for ARM
     </a>
     
     </li>
     <li class="pull-right">
     
-    <a href=../native_tools/>
-        Next: Native install Option
+    <a href=../project_create/>
+        Next: Create Your First Project
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/get_started/get_started/index.html
----------------------------------------------------------------------
diff --git a/latest/os/get_started/get_started/index.html b/latest/os/get_started/get_started/index.html
index d52bcf1..8e648ae 100644
--- a/latest/os/get_started/get_started/index.html
+++ b/latest/os/get_started/get_started/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li >
+      <a href="../docker/">Docker Container Option</a>
     </li>
 
               
@@ -326,7 +326,7 @@
   
   
     <li><a href="
-  ../../../faq/how_to_edit_docs/
+  ../../../faq/go_env/
 ">Appendix</a>
   
   
@@ -362,9 +362,12 @@
                             <h2 id="quick-start">Quick Start</h2>
 <p>If you are curious about Mynewt and want to get a quick feel for the project, you've come to the right place. We have two options for you:</p>
 <p><br></p>
-<p><strong>Option 1</strong> is the quick and easy way to get up and running with Mynewt. The Newt tool and build toolchains are all available in a single <a href="../docker/">All-in-one Docker Container</a> that you can install on your laptop or computer.</p>
+<p><strong>Option 1</strong> is an easy, self-contained way to get up and running with Mynewt - but has limitations! The Newt tool and build toolchains are all available in a single <a href="../docker/">All-in-one Docker Container</a> that you can install on your laptop or computer.</p>
+<p>However, this is not a long-term option since support is not likely for all features useful or critical to embedded systems development. For example, USB device mapping available in the Docker toolkit (used in this Option 1) is no longer available in the new Docker releases. The Docker option is also typically slower than the native install option. </p>
+<p><span style="color:red"> Therefore, the recommended option is Option 2 below. </span></p>
 <p><br></p>
-<p><strong>Option 2</strong> allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for developing embedded software (e.g. GNU toolchain) natively on your laptop or computer. You may want this if you are already familiar with such environments or are concerned about performance on your machine. Follow the instructions to <a href="../native_tools/">install native tools</a> and <a href="../cross_tools/">install cross tools for ARM</a> if you prefer this option.</p>
+<p><strong>Option 2 (Recommended)</strong> allows you to install the Newt tool, instances of the Mynewt OS (for simulated targets), and toolchains for developing embedded software (e.g. GNU toolchain) natively on your laptop or computer. We have tried to make the process easy. For example, for the Mac OS we created brew formulas. </p>
+<p>You want this option if you are familiar with such environments or are concerned about performance on your machine. Follow the instructions to <a href="../native_tools/">install native tools</a> and <a href="../cross_tools/">install cross tools for ARM</a> if you prefer this option.</p>
 <p><br></p>
 <p>You can then proceed with the instructions on how to 
 * <a href="../project_create/">Create Your First Project</a> - on simulated hardware.</p>
@@ -389,8 +392,8 @@
     </li>
     <li class="pull-right">
     
-    <a href=../docker/>
-        Next: Docker Container Option
+    <a href=../native_tools/>
+        Next: Native install Option
         <span class="fa fa-arrow-right"></span>
     </a>
     

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/get_started/native_tools/index.html
----------------------------------------------------------------------
diff --git a/latest/os/get_started/native_tools/index.html b/latest/os/get_started/native_tools/index.html
index 5df2dcc..38c0f4d 100644
--- a/latest/os/get_started/native_tools/index.html
+++ b/latest/os/get_started/native_tools/index.html
@@ -211,14 +211,6 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
-    </li>
-
-              
-          
-              
-                
   
   
     <li class="active"><a href="./">Native install Option</a>
@@ -261,6 +253,14 @@
               
                 
     <li >
+      <a href="../docker/">Docker Container Option</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../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>
   
   
@@ -507,9 +507,9 @@ Setting up gdb (7.7.1-0ubuntu5~14.04.2) ...
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../docker/>
+    <a href=../get_started/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Docker Container Option
+        Previous: Basic Setup
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/get_started/project_create/index.html
----------------------------------------------------------------------
diff --git a/latest/os/get_started/project_create/index.html b/latest/os/get_started/project_create/index.html
index f91e279..249a2e5 100644
--- a/latest/os/get_started/project_create/index.html
+++ b/latest/os/get_started/project_create/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li >
+      <a href="../docker/">Docker Container Option</a>
     </li>
 
               
@@ -326,7 +326,7 @@
   
   
     <li><a href="
-  ../../../faq/how_to_edit_docs/
+  ../../../faq/go_env/
 ">Appendix</a>
   
   
@@ -697,9 +697,9 @@ the <a href="../../tutorials/tutorials">tutorials</a> and get a Mynewt project r
 <ul class="nav nav-pills" style="margin-bottom: 10px">
     <li>
     
-    <a href=../cross_tools/>
+    <a href=../docker/>
         <span class="fa fa-arrow-left"></span>
-        Previous: Install Cross Tools for ARM
+        Previous: Docker Container Option
     </a>
     
     </li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/get_started/serial_access/index.html
----------------------------------------------------------------------
diff --git a/latest/os/get_started/serial_access/index.html b/latest/os/get_started/serial_access/index.html
index 84f01a2..219e805 100644
--- a/latest/os/get_started/serial_access/index.html
+++ b/latest/os/get_started/serial_access/index.html
@@ -211,19 +211,19 @@
           
               
                 
-    <li >
-      <a href="../docker/">Docker Container Option</a>
+  
+  
+    <li ><a href="../native_tools/">Native install Option</a>
+  
+  
     </li>
 
               
           
               
                 
-  
-  
-    <li ><a href="../native_tools/">Native install Option</a>
-  
-  
+    <li >
+      <a href="../docker/">Docker Container Option</a>
     </li>
 
               
@@ -326,7 +326,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/get_started/vocabulary/index.html
----------------------------------------------------------------------
diff --git a/latest/os/get_started/vocabulary/index.html b/latest/os/get_started/vocabulary/index.html
index 8b907b7..3afe373 100644
--- a/latest/os/get_started/vocabulary/index.html
+++ b/latest/os/get_started/vocabulary/index.html
@@ -285,7 +285,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/introduction/index.html
----------------------------------------------------------------------
diff --git a/latest/os/introduction/index.html b/latest/os/introduction/index.html
index fce3cba..7a26ad3 100644
--- a/latest/os/introduction/index.html
+++ b/latest/os/introduction/index.html
@@ -285,7 +285,7 @@
   
   
     <li><a href="
-  ../../faq/how_to_edit_docs/
+  ../../faq/go_env/
 ">Appendix</a>
   
   
@@ -374,11 +374,11 @@ code.</p>
 <p>In order to provide all this functionality, and operate in an
 extremely low resource environment, Mynewt provides a very fine-grained source
 package management and build system tool, called <em>newt</em>.</p>
-<p>You can install and build <em>newt</em> for <a href="../../newt/install/newt_linux/">Linux</a> or <a href="../../newt/install/newt_mac/">Mac</a>.</p>
+<p>You can install <em>newt</em> for <a href="../../newt/install/newt_mac/">Mac OS</a> or <a href="../../newt/install/newt_linux/">Linux</a>.</p>
 <p><br></p>
 <h3 id="newt-manager">Newt Manager</h3>
 <p>In order to enable a user to communicate with remote instances of Mynewt OS and query, configure, and operate them, Mynewt provides an application tool called Newt Manager or <code>newtmgr</code>.</p>
-<p>You can install and build <em>newtmgr</em> from source code on <a href="../../newtmgr/installing/">Linux or Mac</a>.</p>
+<p>You can install <em>newtmgr</em> for <a href="../../newtmgr/install_mac/">Mac OS</a> or <a href="../../newtmgr/install_linux/">Linux</a>.</p>
 <p><br></p>
 <h3 id="build-your-first-mynewt-app-with-newt">Build your first Mynewt App with Newt</h3>
 <p>With the introductions out of the way, now is a good time to <a href="../get_started/get_started/">get set up and

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/os/modules/baselibc/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/baselibc/index.html b/latest/os/modules/baselibc/index.html
index 0f12935..be4c346 100644
--- a/latest/os/modules/baselibc/index.html
+++ b/latest/os/modules/baselibc/index.html
@@ -491,7 +491,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/modules/bootloader/boot_build_status/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_build_status/index.html b/latest/os/modules/bootloader/boot_build_status/index.html
index 2d697cc..44fe100 100644
--- a/latest/os/modules/bootloader/boot_build_status/index.html
+++ b/latest/os/modules/bootloader/boot_build_status/index.html
@@ -722,7 +722,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/modules/bootloader/boot_build_status_one/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_build_status_one/index.html b/latest/os/modules/bootloader/boot_build_status_one/index.html
index ed38ec7..d2469a7 100644
--- a/latest/os/modules/bootloader/boot_build_status_one/index.html
+++ b/latest/os/modules/bootloader/boot_build_status_one/index.html
@@ -722,7 +722,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/modules/bootloader/boot_clear_status/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_clear_status/index.html b/latest/os/modules/bootloader/boot_clear_status/index.html
index d108021..d7dad38 100644
--- a/latest/os/modules/bootloader/boot_clear_status/index.html
+++ b/latest/os/modules/bootloader/boot_clear_status/index.html
@@ -722,7 +722,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/modules/bootloader/boot_copy_area/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_copy_area/index.html b/latest/os/modules/bootloader/boot_copy_area/index.html
index d8dd573..c7a433a 100644
--- a/latest/os/modules/bootloader/boot_copy_area/index.html
+++ b/latest/os/modules/bootloader/boot_copy_area/index.html
@@ -722,7 +722,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/modules/bootloader/boot_copy_image/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_copy_image/index.html b/latest/os/modules/bootloader/boot_copy_image/index.html
index e1bf304..ecb1de6 100644
--- a/latest/os/modules/bootloader/boot_copy_image/index.html
+++ b/latest/os/modules/bootloader/boot_copy_image/index.html
@@ -722,7 +722,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/modules/bootloader/boot_erase_area/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_erase_area/index.html b/latest/os/modules/bootloader/boot_erase_area/index.html
index 5d0ad0f..54f9b59 100644
--- a/latest/os/modules/bootloader/boot_erase_area/index.html
+++ b/latest/os/modules/bootloader/boot_erase_area/index.html
@@ -722,7 +722,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/modules/bootloader/boot_fill_slot/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_fill_slot/index.html b/latest/os/modules/bootloader/boot_fill_slot/index.html
index d7fd6ab..d454951 100644
--- a/latest/os/modules/bootloader/boot_fill_slot/index.html
+++ b/latest/os/modules/bootloader/boot_fill_slot/index.html
@@ -722,7 +722,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/modules/bootloader/boot_find_image_area_idx/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_find_image_area_idx/index.html b/latest/os/modules/bootloader/boot_find_image_area_idx/index.html
index 70b7717..a79c6ad 100644
--- a/latest/os/modules/bootloader/boot_find_image_area_idx/index.html
+++ b/latest/os/modules/bootloader/boot_find_image_area_idx/index.html
@@ -722,7 +722,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/modules/bootloader/boot_find_image_part/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_find_image_part/index.html b/latest/os/modules/bootloader/boot_find_image_part/index.html
index 9768dab..9cb668e 100644
--- a/latest/os/modules/bootloader/boot_find_image_part/index.html
+++ b/latest/os/modules/bootloader/boot_find_image_part/index.html
@@ -722,7 +722,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/modules/bootloader/boot_find_image_slot/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_find_image_slot/index.html b/latest/os/modules/bootloader/boot_find_image_slot/index.html
index d2e31bf..78b49e3 100644
--- a/latest/os/modules/bootloader/boot_find_image_slot/index.html
+++ b/latest/os/modules/bootloader/boot_find_image_slot/index.html
@@ -722,7 +722,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/modules/bootloader/boot_go/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_go/index.html b/latest/os/modules/bootloader/boot_go/index.html
index 07a9694..49c1149 100644
--- a/latest/os/modules/bootloader/boot_go/index.html
+++ b/latest/os/modules/bootloader/boot_go/index.html
@@ -722,7 +722,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/modules/bootloader/boot_init_flash/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_init_flash/index.html b/latest/os/modules/bootloader/boot_init_flash/index.html
index 388f517..b8f6038 100644
--- a/latest/os/modules/bootloader/boot_init_flash/index.html
+++ b/latest/os/modules/bootloader/boot_init_flash/index.html
@@ -722,7 +722,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/modules/bootloader/boot_move_area/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_move_area/index.html b/latest/os/modules/bootloader/boot_move_area/index.html
index 89f19e4..b590e6a 100644
--- a/latest/os/modules/bootloader/boot_move_area/index.html
+++ b/latest/os/modules/bootloader/boot_move_area/index.html
@@ -722,7 +722,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/modules/bootloader/boot_read_image_header/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_read_image_header/index.html b/latest/os/modules/bootloader/boot_read_image_header/index.html
index 3d07729..ed0dc17 100644
--- a/latest/os/modules/bootloader/boot_read_image_header/index.html
+++ b/latest/os/modules/bootloader/boot_read_image_header/index.html
@@ -722,7 +722,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/modules/bootloader/boot_read_image_headers/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_read_image_headers/index.html b/latest/os/modules/bootloader/boot_read_image_headers/index.html
index 1775015..6394827 100644
--- a/latest/os/modules/bootloader/boot_read_image_headers/index.html
+++ b/latest/os/modules/bootloader/boot_read_image_headers/index.html
@@ -722,7 +722,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/modules/bootloader/boot_read_status/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_read_status/index.html b/latest/os/modules/bootloader/boot_read_status/index.html
index a8a9fb0..6225069 100644
--- a/latest/os/modules/bootloader/boot_read_status/index.html
+++ b/latest/os/modules/bootloader/boot_read_status/index.html
@@ -722,7 +722,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/modules/bootloader/boot_select_image_slot/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_select_image_slot/index.html b/latest/os/modules/bootloader/boot_select_image_slot/index.html
index 0ec4085..740d1a5 100644
--- a/latest/os/modules/bootloader/boot_select_image_slot/index.html
+++ b/latest/os/modules/bootloader/boot_select_image_slot/index.html
@@ -722,7 +722,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/modules/bootloader/boot_slot_addr/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_slot_addr/index.html b/latest/os/modules/bootloader/boot_slot_addr/index.html
index 11c7639..0fc743e 100644
--- a/latest/os/modules/bootloader/boot_slot_addr/index.html
+++ b/latest/os/modules/bootloader/boot_slot_addr/index.html
@@ -722,7 +722,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/modules/bootloader/boot_slot_to_area_idx/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_slot_to_area_idx/index.html b/latest/os/modules/bootloader/boot_slot_to_area_idx/index.html
index 0286e1d..182ecdf 100644
--- a/latest/os/modules/bootloader/boot_slot_to_area_idx/index.html
+++ b/latest/os/modules/bootloader/boot_slot_to_area_idx/index.html
@@ -722,7 +722,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/modules/bootloader/boot_swap_areas/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_swap_areas/index.html b/latest/os/modules/bootloader/boot_swap_areas/index.html
index bc49661..6df972d 100644
--- a/latest/os/modules/bootloader/boot_swap_areas/index.html
+++ b/latest/os/modules/bootloader/boot_swap_areas/index.html
@@ -722,7 +722,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/modules/bootloader/boot_vect_delete_main/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_vect_delete_main/index.html b/latest/os/modules/bootloader/boot_vect_delete_main/index.html
index 3009096..dfbc56b 100644
--- a/latest/os/modules/bootloader/boot_vect_delete_main/index.html
+++ b/latest/os/modules/bootloader/boot_vect_delete_main/index.html
@@ -722,7 +722,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/modules/bootloader/boot_vect_delete_test/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_vect_delete_test/index.html b/latest/os/modules/bootloader/boot_vect_delete_test/index.html
index 6c256eb..d7164fb 100644
--- a/latest/os/modules/bootloader/boot_vect_delete_test/index.html
+++ b/latest/os/modules/bootloader/boot_vect_delete_test/index.html
@@ -722,7 +722,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/modules/bootloader/boot_vect_read_main/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_vect_read_main/index.html b/latest/os/modules/bootloader/boot_vect_read_main/index.html
index 3104030..f22c090 100644
--- a/latest/os/modules/bootloader/boot_vect_read_main/index.html
+++ b/latest/os/modules/bootloader/boot_vect_read_main/index.html
@@ -722,7 +722,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/modules/bootloader/boot_vect_read_one/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_vect_read_one/index.html b/latest/os/modules/bootloader/boot_vect_read_one/index.html
index e711bf8..7972596 100644
--- a/latest/os/modules/bootloader/boot_vect_read_one/index.html
+++ b/latest/os/modules/bootloader/boot_vect_read_one/index.html
@@ -722,7 +722,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/modules/bootloader/boot_vect_read_test/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_vect_read_test/index.html b/latest/os/modules/bootloader/boot_vect_read_test/index.html
index c92fac9..80428f2 100644
--- a/latest/os/modules/bootloader/boot_vect_read_test/index.html
+++ b/latest/os/modules/bootloader/boot_vect_read_test/index.html
@@ -722,7 +722,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/modules/bootloader/boot_write_status/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/boot_write_status/index.html b/latest/os/modules/bootloader/boot_write_status/index.html
index c8973b7..13b14ce 100644
--- a/latest/os/modules/bootloader/boot_write_status/index.html
+++ b/latest/os/modules/bootloader/boot_write_status/index.html
@@ -722,7 +722,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/modules/bootloader/bootloader/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/bootloader/bootloader/index.html b/latest/os/modules/bootloader/bootloader/index.html
index 20975b2..0b75cf8 100644
--- a/latest/os/modules/bootloader/bootloader/index.html
+++ b/latest/os/modules/bootloader/bootloader/index.html
@@ -510,7 +510,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/modules/console/console/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console/index.html b/latest/os/modules/console/console/index.html
index ccae748..abdf912 100644
--- a/latest/os/modules/console/console/index.html
+++ b/latest/os/modules/console/console/index.html
@@ -510,7 +510,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/modules/console/console_blocking_mode/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_blocking_mode/index.html b/latest/os/modules/console/console_blocking_mode/index.html
index 4a945ab..cca310c 100644
--- a/latest/os/modules/console/console_blocking_mode/index.html
+++ b/latest/os/modules/console/console_blocking_mode/index.html
@@ -570,7 +570,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/modules/console/console_echo/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_echo/index.html b/latest/os/modules/console/console_echo/index.html
index 23e5cde..652935e 100644
--- a/latest/os/modules/console/console_echo/index.html
+++ b/latest/os/modules/console/console_echo/index.html
@@ -570,7 +570,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/modules/console/console_init/index.html
----------------------------------------------------------------------
diff --git a/latest/os/modules/console/console_init/index.html b/latest/os/modules/console/console_init/index.html
index 26fc669..df8a923 100644
--- a/latest/os/modules/console/console_init/index.html
+++ b/latest/os/modules/console/console_init/index.html
@@ -570,7 +570,7 @@
   
   
     <li><a href="
-  ../../../../faq/how_to_edit_docs/
+  ../../../../faq/go_env/
 ">Appendix</a>
   
   



[11/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/network/ble/ble_hs/ble_att/ble_att/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_att/ble_att/index.html b/develop/network/ble/ble_hs/ble_att/ble_att/index.html
index 8ef2128..41bd8c7 100644
--- a/develop/network/ble/ble_hs/ble_att/ble_att/index.html
+++ b/develop/network/ble/ble_hs/ble_att/ble_att/index.html
@@ -456,7 +456,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/develop/network/ble/ble_hs/ble_att/functions/ble_att_mtu/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_att/functions/ble_att_mtu/index.html b/develop/network/ble/ble_hs/ble_att/functions/ble_att_mtu/index.html
index 2299b9f..ef8e1d0 100644
--- a/develop/network/ble/ble_hs/ble_att/functions/ble_att_mtu/index.html
+++ b/develop/network/ble/ble_hs/ble_att/functions/ble_att_mtu/index.html
@@ -492,7 +492,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/develop/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/index.html b/develop/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/index.html
index 1a82df7..1b58230 100644
--- a/develop/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/index.html
+++ b/develop/network/ble/ble_hs/ble_att/functions/ble_att_set_preferred_mtu/index.html
@@ -492,7 +492,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/develop/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/index.html b/develop/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/index.html
index 1cc706a..6bc4ff1 100644
--- a/develop/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/index.html
+++ b/develop/network/ble/ble_hs/ble_att/functions/ble_att_svr_read_local/index.html
@@ -492,7 +492,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/develop/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/index.html b/develop/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/index.html
index f64d652..c19ddcc 100644
--- a/develop/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/index.html
+++ b/develop/network/ble/ble_hs/ble_att/functions/ble_att_svr_write_local/index.html
@@ -492,7 +492,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/develop/network/ble/ble_hs/ble_gap/ble_gap/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/ble_gap/index.html b/develop/network/ble/ble_hs/ble_gap/ble_gap/index.html
index 1b38f0c..5e7a5ce 100644
--- a/develop/network/ble/ble_hs/ble_gap/ble_gap/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/ble_gap/index.html
@@ -469,7 +469,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/develop/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/index.html b/develop/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/index.html
index 789aa26..00dd783 100644
--- a/develop/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/definitions/ble_gap_defs/index.html
@@ -481,7 +481,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/index.html
index 74237b8..f8b29a2 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_active/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/index.html
index 132d26a..66697cf 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_rsp_set_fields/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/index.html
index 43bbac5..edab32c 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_set_fields/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/index.html
index 427f46c..ba0695b 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_start/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/index.html
index f257190..1e833b5 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_adv_stop/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/index.html
index b94bfe6..d2d315c 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_active/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/index.html
index 3cc338a..a98e7f2 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_cancel/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/index.html
index bb0fa5c..d11783f 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_find/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/index.html
index a48746d..a24ae10 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_conn_rssi/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/index.html
index df254b8..2a1fafa 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_connect/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/index.html
index 74665d3..9e24a35 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/index.html
index 38597d2..7915d00 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_active/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/index.html
index a484756..0d57199 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_disc_cancel/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/index.html
index 9bdfa58..333aa68 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_security_initiate/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/index.html
index d33723e..1bdb2f4 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_terminate/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/index.html
index c453bae..e63bc36 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_update_params/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/index.html b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/index.html
index 44838f1..de5a5e3 100644
--- a/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/index.html
+++ b/develop/network/ble/ble_hs/ble_gap/functions/ble_gap_wl_set/index.html
@@ -609,7 +609,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/develop/network/ble/ble_hs/ble_gattc/ble_gattc/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/ble_gattc/index.html b/develop/network/ble/ble_hs/ble_gattc/ble_gattc/index.html
index f05a3db..1b72550 100644
--- a/develop/network/ble/ble_hs/ble_gattc/ble_gattc/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/ble_gattc/index.html
@@ -469,7 +469,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/develop/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/index.html b/develop/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/index.html
index 9d15356..81cfc6d 100644
--- a/develop/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/definitions/ble_gattc_defs/index.html
@@ -481,7 +481,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/index.html
index 4653e08..7b8a4c6 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_chrs/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/index.html
index 8c69cb8..cbdf3f7 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_dscs/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/index.html
index 1ccc713..7f556e0 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_all_svcs/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/index.html
index 54772bc..b39cf0a 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_chrs_by_uuid/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/index.html
index 0b9aee5..7fa67c5 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_disc_svc_by_uuid/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/index.html
index 753c709..7867d6f 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_exchange_mtu/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/index.html
index 0128588..88eadff 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_find_inc_svcs/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/index.html
index fffcdb3..513fb0c 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_indicate/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/index.html
index 474bbdc..d1b8013 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/index.html
index 0cf772c..4e28937 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_notify_custom/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/index.html
index 2a46d5c..403c656 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/index.html
index 5c8e8eb..9994d2b 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_by_uuid/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/index.html
index 8dafe2a..4be96e8 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_long/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/index.html
index 10e1eb5..aa16f6b 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_read_mult/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/index.html
index aa5b4d8..3b6907c 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/index.html
index 49ebe4a..b2e1a0f 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_flat/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/index.html
index 372542b..fd95e66 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_long/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/index.html
index a7d9dc0..5c7a328 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/index.html
index c179d48..3aefed4 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_no_rsp_flat/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/index.html b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/index.html
index e3f257d..02895c7 100644
--- a/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/index.html
+++ b/develop/network/ble/ble_hs/ble_gattc/functions/ble_gattc_write_reliable/index.html
@@ -633,7 +633,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/develop/network/ble/ble_hs/ble_gatts/ble_gatts/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gatts/ble_gatts/index.html b/develop/network/ble/ble_hs/ble_gatts/ble_gatts/index.html
index a87ee20..98928d5 100644
--- a/develop/network/ble/ble_hs/ble_gatts/ble_gatts/index.html
+++ b/develop/network/ble/ble_hs/ble_gatts/ble_gatts/index.html
@@ -469,7 +469,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/develop/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/index.html b/develop/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/index.html
index 2b7c2b0..fe342e5 100644
--- a/develop/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/index.html
+++ b/develop/network/ble/ble_hs/ble_gatts/definitions/ble_gatts_defs/index.html
@@ -481,7 +481,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/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/index.html b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/index.html
index 5d289b2..b681c7e 100644
--- a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/index.html
+++ b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_add_svcs/index.html
@@ -529,7 +529,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/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/index.html b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/index.html
index fda1690..9047a27 100644
--- a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/index.html
+++ b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_cfg/index.html
@@ -529,7 +529,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/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/index.html b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/index.html
index 993682e..fe3b26d 100644
--- a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/index.html
+++ b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_count_resources/index.html
@@ -529,7 +529,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/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/index.html b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/index.html
index 831ebf1..0e8674c 100644
--- a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/index.html
+++ b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_chr/index.html
@@ -529,7 +529,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/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/index.html b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/index.html
index a329596..9693ce2 100644
--- a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/index.html
+++ b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_dsc/index.html
@@ -529,7 +529,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/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/index.html b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/index.html
index cca9a19..7e293c1 100644
--- a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/index.html
+++ b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_find_svc/index.html
@@ -529,7 +529,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/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/index.html b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/index.html
index 298d73b..0d5cb2e 100644
--- a/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/index.html
+++ b/develop/network/ble/ble_hs/ble_gatts/functions/ble_gatts_register_svcs/index.html
@@ -529,7 +529,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/develop/network/ble/ble_hs/ble_hs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_hs/index.html b/develop/network/ble/ble_hs/ble_hs/index.html
index 17fc184..ea5b259 100644
--- a/develop/network/ble/ble_hs/ble_hs/index.html
+++ b/develop/network/ble/ble_hs/ble_hs/index.html
@@ -437,7 +437,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/develop/network/ble/ble_hs/ble_hs_id/ble_hs_id/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_hs_id/ble_hs_id/index.html b/develop/network/ble/ble_hs/ble_hs_id/ble_hs_id/index.html
index 6603dce..0a3dc32 100644
--- a/develop/network/ble/ble_hs/ble_hs_id/ble_hs_id/index.html
+++ b/develop/network/ble/ble_hs/ble_hs_id/ble_hs_id/index.html
@@ -456,7 +456,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/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/index.html b/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/index.html
index bec1ca5..64e8182 100644
--- a/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/index.html
+++ b/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_copy_addr/index.html
@@ -484,7 +484,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/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/index.html b/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/index.html
index 1de49f6..625ae25 100644
--- a/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/index.html
+++ b/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_gen_rnd/index.html
@@ -484,7 +484,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/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/index.html b/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/index.html
index 8b381b3..04fcec0 100644
--- a/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/index.html
+++ b/develop/network/ble/ble_hs/ble_hs_id/functions/ble_hs_id_set_rnd/index.html
@@ -484,7 +484,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/develop/network/ble/ble_hs/ble_hs_return_codes/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/ble_hs_return_codes/index.html b/develop/network/ble/ble_hs/ble_hs_return_codes/index.html
index 7b51a6a..bab7d32 100644
--- a/develop/network/ble/ble_hs/ble_hs_return_codes/index.html
+++ b/develop/network/ble/ble_hs/ble_hs_return_codes/index.html
@@ -437,7 +437,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/develop/network/ble/ble_hs/init/definitions/init_defs/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/init/definitions/init_defs/index.html b/develop/network/ble/ble_hs/init/definitions/init_defs/index.html
index 2d12a6e..1c04f94 100644
--- a/develop/network/ble/ble_hs/init/definitions/init_defs/index.html
+++ b/develop/network/ble/ble_hs/init/definitions/init_defs/index.html
@@ -481,7 +481,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/develop/network/ble/ble_hs/init/functions/ble_hs_init/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/init/functions/ble_hs_init/index.html b/develop/network/ble/ble_hs/init/functions/ble_hs_init/index.html
index f163a62..a0db90e 100644
--- a/develop/network/ble/ble_hs/init/functions/ble_hs_init/index.html
+++ b/develop/network/ble/ble_hs/init/functions/ble_hs_init/index.html
@@ -497,7 +497,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/develop/network/ble/ble_hs/init/functions/ble_hs_start/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/init/functions/ble_hs_start/index.html b/develop/network/ble/ble_hs/init/functions/ble_hs_start/index.html
index bb45c0b..1b02218 100644
--- a/develop/network/ble/ble_hs/init/functions/ble_hs_start/index.html
+++ b/develop/network/ble/ble_hs/init/functions/ble_hs_start/index.html
@@ -497,7 +497,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/develop/network/ble/ble_hs/init/functions/ble_hs_synced/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/init/functions/ble_hs_synced/index.html b/develop/network/ble/ble_hs/init/functions/ble_hs_synced/index.html
index 71e6487..192d73d 100644
--- a/develop/network/ble/ble_hs/init/functions/ble_hs_synced/index.html
+++ b/develop/network/ble/ble_hs/init/functions/ble_hs_synced/index.html
@@ -497,7 +497,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/develop/network/ble/ble_hs/init/init/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/init/init/index.html b/develop/network/ble/ble_hs/init/init/index.html
index ef747d7..43f987a 100644
--- a/develop/network/ble/ble_hs/init/init/index.html
+++ b/develop/network/ble/ble_hs/init/init/index.html
@@ -469,7 +469,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/develop/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/index.html b/develop/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/index.html
index 48a91cd..fd702c1 100644
--- a/develop/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/index.html
+++ b/develop/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_uid/index.html
@@ -524,7 +524,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/develop/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/index.html b/develop/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/index.html
index 129f312..7bd9b8a 100644
--- a/develop/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/index.html
+++ b/develop/network/ble/ble_hs/other/functions/ble_eddystone_set_adv_data_url/index.html
@@ -524,7 +524,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/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/index.html b/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/index.html
index 0bbf209..2a4813b 100644
--- a/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/index.html
+++ b/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_att_pkt/index.html
@@ -524,7 +524,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/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/index.html b/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/index.html
index 376ddb3..53d1395 100644
--- a/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/index.html
+++ b/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_from_flat/index.html
@@ -524,7 +524,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/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/index.html b/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/index.html
index 6dd9fa0..d40c25b 100644
--- a/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/index.html
+++ b/develop/network/ble/ble_hs/other/functions/ble_hs_mbuf_to_flat/index.html
@@ -524,7 +524,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/develop/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/index.html b/develop/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/index.html
index fd72ca0..c401cbb 100644
--- a/develop/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/index.html
+++ b/develop/network/ble/ble_hs/other/functions/ble_ibeacon_set_adv_data/index.html
@@ -524,7 +524,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/develop/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/index.html b/develop/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/index.html
index e2bf4ad..1c6b95d 100644
--- a/develop/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/index.html
+++ b/develop/network/ble/ble_hs/other/functions/ble_uuid_128_to_16/index.html
@@ -524,7 +524,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/develop/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/index.html b/develop/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/index.html
index 88f9bb9..96966ea 100644
--- a/develop/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/index.html
+++ b/develop/network/ble/ble_hs/other/functions/ble_uuid_16_to_128/index.html
@@ -524,7 +524,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/develop/network/ble/ble_hs/other/other/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_hs/other/other/index.html b/develop/network/ble/ble_hs/other/other/index.html
index 9d50bf5..bb464f6 100644
--- a/develop/network/ble/ble_hs/other/other/index.html
+++ b/develop/network/ble/ble_hs/other/other/index.html
@@ -456,7 +456,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/develop/network/ble/ble_intro/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_intro/index.html b/develop/network/ble/ble_intro/index.html
index 5046d2d..5298d1a 100644
--- a/develop/network/ble/ble_intro/index.html
+++ b/develop/network/ble/ble_intro/index.html
@@ -346,7 +346,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/develop/network/ble/ble_sec/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ble_sec/index.html b/develop/network/ble/ble_sec/index.html
index 4d071fd..e82a961 100644
--- a/develop/network/ble/ble_sec/index.html
+++ b/develop/network/ble/ble_sec/index.html
@@ -346,7 +346,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/develop/network/ble/bletiny/bletiny_GAP/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/bletiny/bletiny_GAP/index.html b/develop/network/ble/bletiny/bletiny_GAP/index.html
index fd512ef..d5b83db 100644
--- a/develop/network/ble/bletiny/bletiny_GAP/index.html
+++ b/develop/network/ble/bletiny/bletiny_GAP/index.html
@@ -376,7 +376,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/develop/network/ble/bletiny/bletiny_GATT/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/bletiny/bletiny_GATT/index.html b/develop/network/ble/bletiny/bletiny_GATT/index.html
index 4291478..3f60532 100644
--- a/develop/network/ble/bletiny/bletiny_GATT/index.html
+++ b/develop/network/ble/bletiny/bletiny_GATT/index.html
@@ -376,7 +376,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/develop/network/ble/bletiny/bletiny_advdata/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/bletiny/bletiny_advdata/index.html b/develop/network/ble/bletiny/bletiny_advdata/index.html
index 9d2c574..c94fe94 100644
--- a/develop/network/ble/bletiny/bletiny_advdata/index.html
+++ b/develop/network/ble/bletiny/bletiny_advdata/index.html
@@ -376,7 +376,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/develop/network/ble/bletiny/bletiny_api/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/bletiny/bletiny_api/index.html b/develop/network/ble/bletiny/bletiny_api/index.html
index 2cbf88e..418a71e 100644
--- a/develop/network/ble/bletiny/bletiny_api/index.html
+++ b/develop/network/ble/bletiny/bletiny_api/index.html
@@ -376,7 +376,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/develop/network/ble/ini_stack/ble_add_cpu/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ini_stack/ble_add_cpu/index.html b/develop/network/ble/ini_stack/ble_add_cpu/index.html
index b734aed..d95b699 100644
--- a/develop/network/ble/ini_stack/ble_add_cpu/index.html
+++ b/develop/network/ble/ini_stack/ble_add_cpu/index.html
@@ -416,7 +416,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/develop/network/ble/ini_stack/ble_consolepkg/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ini_stack/ble_consolepkg/index.html b/develop/network/ble/ini_stack/ble_consolepkg/index.html
index e0e9de7..07b4ec3 100644
--- a/develop/network/ble/ini_stack/ble_consolepkg/index.html
+++ b/develop/network/ble/ini_stack/ble_consolepkg/index.html
@@ -416,7 +416,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/develop/network/ble/ini_stack/ble_controller_ini/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ini_stack/ble_controller_ini/index.html b/develop/network/ble/ini_stack/ble_controller_ini/index.html
index cf280c3..6e49050 100644
--- a/develop/network/ble/ini_stack/ble_controller_ini/index.html
+++ b/develop/network/ble/ini_stack/ble_controller_ini/index.html
@@ -416,7 +416,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/develop/network/ble/ini_stack/ble_devadd/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ini_stack/ble_devadd/index.html b/develop/network/ble/ini_stack/ble_devadd/index.html
index a54416d..2078626 100644
--- a/develop/network/ble/ini_stack/ble_devadd/index.html
+++ b/develop/network/ble/ini_stack/ble_devadd/index.html
@@ -416,7 +416,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/develop/network/ble/ini_stack/ble_host_ini/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ini_stack/ble_host_ini/index.html b/develop/network/ble/ini_stack/ble_host_ini/index.html
index fdd596d..d9d7f20 100644
--- a/develop/network/ble/ini_stack/ble_host_ini/index.html
+++ b/develop/network/ble/ini_stack/ble_host_ini/index.html
@@ -416,7 +416,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/develop/network/ble/ini_stack/ble_ini_intro/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ini_stack/ble_ini_intro/index.html b/develop/network/ble/ini_stack/ble_ini_intro/index.html
index b611d70..a0e76e0 100644
--- a/develop/network/ble/ini_stack/ble_ini_intro/index.html
+++ b/develop/network/ble/ini_stack/ble_ini_intro/index.html
@@ -416,7 +416,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/develop/network/ble/ini_stack/ble_mempool/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ini_stack/ble_mempool/index.html b/develop/network/ble/ini_stack/ble_mempool/index.html
index 9284459..95cc9c2 100644
--- a/develop/network/ble/ini_stack/ble_mempool/index.html
+++ b/develop/network/ble/ini_stack/ble_mempool/index.html
@@ -416,7 +416,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/develop/network/ble/ini_stack/ble_parent_ini/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ini_stack/ble_parent_ini/index.html b/develop/network/ble/ini_stack/ble_parent_ini/index.html
index e3a21c8..0b8c55e 100644
--- a/develop/network/ble/ini_stack/ble_parent_ini/index.html
+++ b/develop/network/ble/ini_stack/ble_parent_ini/index.html
@@ -416,7 +416,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/develop/network/ble/ini_stack/ble_statpkg/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/ini_stack/ble_statpkg/index.html b/develop/network/ble/ini_stack/ble_statpkg/index.html
index 736363e..dcfcd47 100644
--- a/develop/network/ble/ini_stack/ble_statpkg/index.html
+++ b/develop/network/ble/ini_stack/ble_statpkg/index.html
@@ -416,7 +416,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/develop/network/ble/nimble_setup/index.html
----------------------------------------------------------------------
diff --git a/develop/network/ble/nimble_setup/index.html b/develop/network/ble/nimble_setup/index.html
index c3cea65..5fdf0d7 100644
--- a/develop/network/ble/nimble_setup/index.html
+++ b/develop/network/ble/nimble_setup/index.html
@@ -346,7 +346,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/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 43faa6f..c0f8f1b 100644
--- a/develop/newt/command_list/newt_build/index.html
+++ b/develop/newt/command_list/newt_build/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/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 77c05af..119b7b1 100644
--- a/develop/newt/command_list/newt_clean/index.html
+++ b/develop/newt/command_list/newt_clean/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/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 00fce7b..b139baf 100644
--- a/develop/newt/command_list/newt_create_image/index.html
+++ b/develop/newt/command_list/newt_create_image/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/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 3095080..fe80b74 100644
--- a/develop/newt/command_list/newt_debug/index.html
+++ b/develop/newt/command_list/newt_debug/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/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 d76c66b..c676d30 100644
--- a/develop/newt/command_list/newt_help/index.html
+++ b/develop/newt/command_list/newt_help/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/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 5d33fa4..9b7af5a 100644
--- a/develop/newt/command_list/newt_info/index.html
+++ b/develop/newt/command_list/newt_info/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/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 3385c48..ce42823 100644
--- a/develop/newt/command_list/newt_install/index.html
+++ b/develop/newt/command_list/newt_install/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/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 71c7c09..496e9aa 100644
--- a/develop/newt/command_list/newt_load/index.html
+++ b/develop/newt/command_list/newt_load/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/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 16e889b..97eada4 100644
--- a/develop/newt/command_list/newt_mfg/index.html
+++ b/develop/newt/command_list/newt_mfg/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/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 a1d2654..210b4ba 100644
--- a/develop/newt/command_list/newt_new/index.html
+++ b/develop/newt/command_list/newt_new/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/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
index 630467f..6b56c91 100644
--- a/develop/newt/command_list/newt_pkg/index.html
+++ b/develop/newt/command_list/newt_pkg/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/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 16f02c9..6efea66 100644
--- a/develop/newt/command_list/newt_run/index.html
+++ b/develop/newt/command_list/newt_run/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/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 cab57df..c48b6a0 100644
--- a/develop/newt/command_list/newt_size/index.html
+++ b/develop/newt/command_list/newt_size/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/develop/newt/command_list/newt_sync/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_sync/index.html b/develop/newt/command_list/newt_sync/index.html
index e71af5e..3ece8b5 100644
--- a/develop/newt/command_list/newt_sync/index.html
+++ b/develop/newt/command_list/newt_sync/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/develop/newt/command_list/newt_target/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_target/index.html b/develop/newt/command_list/newt_target/index.html
index 5710134..9a597f5 100644
--- a/develop/newt/command_list/newt_target/index.html
+++ b/develop/newt/command_list/newt_target/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/develop/newt/command_list/newt_test/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_test/index.html b/develop/newt/command_list/newt_test/index.html
index b9a5e4c..db4a86e 100644
--- a/develop/newt/command_list/newt_test/index.html
+++ b/develop/newt/command_list/newt_test/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/develop/newt/command_list/newt_upgrade/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_upgrade/index.html b/develop/newt/command_list/newt_upgrade/index.html
index f44b44e..a1ded36 100644
--- a/develop/newt/command_list/newt_upgrade/index.html
+++ b/develop/newt/command_list/newt_upgrade/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/develop/newt/command_list/newt_vals/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_vals/index.html b/develop/newt/command_list/newt_vals/index.html
index b78138c..86ffa89 100644
--- a/develop/newt/command_list/newt_vals/index.html
+++ b/develop/newt/command_list/newt_vals/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/develop/newt/command_list/newt_version/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/command_list/newt_version/index.html b/develop/newt/command_list/newt_version/index.html
index 6f365d9..6ca1b99 100644
--- a/develop/newt/command_list/newt_version/index.html
+++ b/develop/newt/command_list/newt_version/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/develop/newt/install/newt_linux/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/install/newt_linux/index.html b/develop/newt/install/newt_linux/index.html
index 0aad009..df1b621 100644
--- a/develop/newt/install/newt_linux/index.html
+++ b/develop/newt/install/newt_linux/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>
   
   


[04/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
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 &quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&quot;
+<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 &quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&quot;
 </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
+==&gt; Installing mynewt-newt from runtimeco/mynewt
+==&gt; Downloading https://github.com/runtimeco/binary-releases/raw/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.bottle.tar.gz
+==&gt; Downloading from https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.
+######################################################################## 100.0%
+==&gt; Pouring mynewt-newt-1.0.0.mavericks.bottle.tar.gz
+\U0001f37a  /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
-        ==&gt; 
-        ...
-        ... 
-        ==&gt; *Summary*
-        \U0001f37a  /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 -&gt; ../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 [&lt;command-name&gt;]
+    For help on &lt;command-name&gt;.  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 &lt;target&gt;
+  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 &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
+
+Use &quot;newt [command] --help&quot; 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 &quot;$GOPATH&quot;/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 [&lt;command-name&gt;]
-            For help on &lt;command-name&gt;.  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 &lt;target&gt;
-          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 &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
-
-        Use &quot;newt [command] --help&quot; 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
+==&gt; Installing mynewt-newt from runtimeco/mynewt
+==&gt; Cloning https://github.com/apache/incubator-mynewt-newt.git
+Cloning into &#39;Users/&lt;username&gt;/Library/Caches/Homebrew/mynewt-newt--git&#39;...
+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.
+==&gt; Checking out branch master
+==&gt; go install
+\U0001f37a  /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 &quot;$GOPATH&quot;/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>&raquo; <a href="../overview/">Newt Manager Guide</a></li>
+        
+      
+        
+          <li>&raquo; <a href="../install_mac/">Install</a></li>
+        
+      
+      
+        <li>&raquo; 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>&raquo; <a href="../overview/">Newt Manager Guide</a></li>
+        
+      
+        
+          <li>&raquo; Install</li>
+        
+      
+      
+        <li>&raquo; 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
+==&gt; Installing mynewt-newtmgr from runtimeco/mynewt
+==&gt; Downloading https://github.com/runtimeco/binary-releases/raw/master/mynewt-newt-tools_1.0.0/mynewt-newtmgr-1.0.0.mavericks.bottle.tar.gz
+==&gt; Downloading from https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.0.0/mynewt-newtmgr-1.0.0.maveric
+######################################################################## 100.0%
+==&gt; Pouring mynewt-newtmgr-1.0.0.mavericks.bottle.tar.gz
+\U0001f37a  /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 -&gt; ../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 &quot;info&quot;)
+  -t, --trace             print all bytes transmitted and received
+
+Use &quot;newtmgr [command] --help&quot; 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
+==&gt; Installing mynewt-newtmgr from runtimeco/mynewt
+==&gt; Cloning https://github.com/apache/incubator-mynewt-newt.git
+Cloning into &#39;/Users/&lt;user&gt;/Library/Caches/Homebrew/mynewt-newtmgr--git&#39;...
+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.
+==&gt; Checking out branch master
+==&gt; go install
+\U0001f37a  /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>&raquo; <a href="../../os/introduction/">Mynewt Documentation</a></li>
-        
-      
-        
-          <li>&raquo; <a href="../overview/">Newt Manager Guide</a></li>
-        
-      
-      
-        <li>&raquo; 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
-==&gt; Downloading https://homebrew.bintray.com/bottles/go-1.5.3.mavericks.bottle.t
-...
-==&gt; Summary
-\U0001f37a  /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>
   
   



[10/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/newt/install/newt_mac/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/install/newt_mac/index.html b/develop/newt/install/newt_mac/index.html
index a3162cb..7f93f5f 100644
--- a/develop/newt/install/newt_mac/index.html
+++ b/develop/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 &quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&quot;
+<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 &quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&quot;
 </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
+==&gt; Installing mynewt-newt from runtimeco/mynewt
+==&gt; Downloading https://github.com/runtimeco/binary-releases/raw/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.bottle.tar.gz
+==&gt; Downloading from https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.0.0/mynewt-newt-1.0.0.mavericks.
+######################################################################## 100.0%
+==&gt; Pouring mynewt-newt-1.0.0.mavericks.bottle.tar.gz
+\U0001f37a  /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
-        ==&gt; 
-        ...
-        ... 
-        ==&gt; *Summary*
-        \U0001f37a  /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 -&gt; ../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 [&lt;command-name&gt;]
+    For help on &lt;command-name&gt;.  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 &lt;target&gt;
+  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 &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
+
+Use &quot;newt [command] --help&quot; 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 &quot;$GOPATH&quot;/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 [&lt;command-name&gt;]
-            For help on &lt;command-name&gt;.  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 &lt;target&gt;
-          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 &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
-
-        Use &quot;newt [command] --help&quot; 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
+==&gt; Installing mynewt-newt from runtimeco/mynewt
+==&gt; Cloning https://github.com/apache/incubator-mynewt-newt.git
+Cloning into &#39;Users/&lt;username&gt;/Library/Caches/Homebrew/mynewt-newt--git&#39;...
+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.
+==&gt; Checking out branch master
+==&gt; go install
+\U0001f37a  /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 &quot;$GOPATH&quot;/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/develop/newt/newt_intro/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/newt_intro/index.html b/develop/newt/newt_intro/index.html
index 93a46bb..dacc0f2 100644
--- a/develop/newt/newt_intro/index.html
+++ b/develop/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/develop/newt/newt_operation/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/newt_operation/index.html b/develop/newt/newt_operation/index.html
index 4df6d05..d3ebf72 100644
--- a/develop/newt/newt_operation/index.html
+++ b/develop/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/develop/newt/newt_ops/index.html
----------------------------------------------------------------------
diff --git a/develop/newt/newt_ops/index.html b/develop/newt/newt_ops/index.html
index c9a7743..c762acc 100644
--- a/develop/newt/newt_ops/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_config/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_config/index.html b/develop/newtmgr/command_list/newtmgr_config/index.html
index a37f1d5..f53404c 100644
--- a/develop/newtmgr/command_list/newtmgr_config/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_conn/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_conn/index.html b/develop/newtmgr/command_list/newtmgr_conn/index.html
index f3d7825..355b16d 100644
--- a/develop/newtmgr/command_list/newtmgr_conn/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_crash/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_crash/index.html b/develop/newtmgr/command_list/newtmgr_crash/index.html
index c7244ae..69cb9c2 100644
--- a/develop/newtmgr/command_list/newtmgr_crash/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_datetime/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_datetime/index.html b/develop/newtmgr/command_list/newtmgr_datetime/index.html
index 7c79dc3..208d213 100644
--- a/develop/newtmgr/command_list/newtmgr_datetime/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_echo/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_echo/index.html b/develop/newtmgr/command_list/newtmgr_echo/index.html
index 6861ee4..bcaabcf 100644
--- a/develop/newtmgr/command_list/newtmgr_echo/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_fs/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_fs/index.html b/develop/newtmgr/command_list/newtmgr_fs/index.html
index 5bffe3a..86f89d5 100644
--- a/develop/newtmgr/command_list/newtmgr_fs/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_image/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_image/index.html b/develop/newtmgr/command_list/newtmgr_image/index.html
index 6f6d937..ca79bb3 100644
--- a/develop/newtmgr/command_list/newtmgr_image/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_logs/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_logs/index.html b/develop/newtmgr/command_list/newtmgr_logs/index.html
index 82753b1..851369a 100644
--- a/develop/newtmgr/command_list/newtmgr_logs/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_mpstats/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_mpstats/index.html b/develop/newtmgr/command_list/newtmgr_mpstats/index.html
index 116b169..fe597b6 100644
--- a/develop/newtmgr/command_list/newtmgr_mpstats/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_reset/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_reset/index.html b/develop/newtmgr/command_list/newtmgr_reset/index.html
index 22020d4..794850f 100644
--- a/develop/newtmgr/command_list/newtmgr_reset/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_run/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_run/index.html b/develop/newtmgr/command_list/newtmgr_run/index.html
index d1ff28c..cef2658 100644
--- a/develop/newtmgr/command_list/newtmgr_run/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_stat/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_stat/index.html b/develop/newtmgr/command_list/newtmgr_stat/index.html
index 45580d4..93afca5 100644
--- a/develop/newtmgr/command_list/newtmgr_stat/index.html
+++ b/develop/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/develop/newtmgr/command_list/newtmgr_taskstats/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/command_list/newtmgr_taskstats/index.html b/develop/newtmgr/command_list/newtmgr_taskstats/index.html
index 64c1f30..8175612 100644
--- a/develop/newtmgr/command_list/newtmgr_taskstats/index.html
+++ b/develop/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/develop/newtmgr/install_linux/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/install_linux/index.html b/develop/newtmgr/install_linux/index.html
new file mode 100644
index 0000000..c5bb466
--- /dev/null
+++ b/develop/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="/develop/os/introduction">Docs</a></li>
+    
+    
+        
+          <li>&raquo; <a href="../overview/">Newt Manager Guide</a></li>
+        
+      
+        
+          <li>&raquo; <a href="../install_mac/">Install</a></li>
+        
+      
+      
+        <li>&raquo; 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/develop/newtmgr/install_mac/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/install_mac/index.html b/develop/newtmgr/install_mac/index.html
new file mode 100644
index 0000000..c72def6
--- /dev/null
+++ b/develop/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="/develop/os/introduction">Docs</a></li>
+    
+    
+        
+          <li>&raquo; <a href="../overview/">Newt Manager Guide</a></li>
+        
+      
+        
+          <li>&raquo; Install</li>
+        
+      
+      
+        <li>&raquo; 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
+==&gt; Installing mynewt-newtmgr from runtimeco/mynewt
+==&gt; Downloading https://github.com/runtimeco/binary-releases/raw/master/mynewt-newt-tools_1.0.0/mynewt-newtmgr-1.0.0.mavericks.bottle.tar.gz
+==&gt; Downloading from https://raw.githubusercontent.com/runtimeco/binary-releases/master/mynewt-newt-tools_1.0.0/mynewt-newtmgr-1.0.0.maveric
+######################################################################## 100.0%
+==&gt; Pouring mynewt-newtmgr-1.0.0.mavericks.bottle.tar.gz
+\U0001f37a  /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 -&gt; ../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 &quot;info&quot;)
+  -t, --trace             print all bytes transmitted and received
+
+Use &quot;newtmgr [command] --help&quot; 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
+==&gt; Installing mynewt-newtmgr from runtimeco/mynewt
+==&gt; Cloning https://github.com/apache/incubator-mynewt-newt.git
+Cloning into &#39;/Users/&lt;user&gt;/Library/Caches/Homebrew/mynewt-newtmgr--git&#39;...
+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.
+==&gt; Checking out branch master
+==&gt; go install
+\U0001f37a  /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/develop/newtmgr/installing/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/installing/index.html b/develop/newtmgr/installing/index.html
deleted file mode 100644
index 2482123..0000000
--- a/develop/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="/develop/os/introduction">Docs</a></li>
-    
-    
-        
-          <li>&raquo; <a href="../../os/introduction/">Mynewt Documentation</a></li>
-        
-      
-        
-          <li>&raquo; <a href="../overview/">Newt Manager Guide</a></li>
-        
-      
-      
-        <li>&raquo; 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
-==&gt; Downloading https://homebrew.bintray.com/bottles/go-1.5.3.mavericks.bottle.t
-...
-==&gt; Summary
-\U0001f37a  /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/develop/newtmgr/overview/index.html
----------------------------------------------------------------------
diff --git a/develop/newtmgr/overview/index.html b/develop/newtmgr/overview/index.html
index 0b4bf20..0fcac72 100644
--- a/develop/newtmgr/overview/index.html
+++ b/develop/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/develop/os/core_os/callout/callout/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/callout/index.html b/develop/os/core_os/callout/callout/index.html
index d0c3917..f6f5e40 100644
--- a/develop/os/core_os/callout/callout/index.html
+++ b/develop/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/develop/os/core_os/callout/os_callout_func_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/os_callout_func_init/index.html b/develop/os/core_os/callout/os_callout_func_init/index.html
index da179f8..b7cef69 100644
--- a/develop/os/core_os/callout/os_callout_func_init/index.html
+++ b/develop/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/develop/os/core_os/callout/os_callout_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/os_callout_init/index.html b/develop/os/core_os/callout/os_callout_init/index.html
index c38e42e..bce97a2 100644
--- a/develop/os/core_os/callout/os_callout_init/index.html
+++ b/develop/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/develop/os/core_os/callout/os_callout_queued/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/os_callout_queued/index.html b/develop/os/core_os/callout/os_callout_queued/index.html
index bcbd3d6..0cf7db9 100644
--- a/develop/os/core_os/callout/os_callout_queued/index.html
+++ b/develop/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/develop/os/core_os/callout/os_callout_reset/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/os_callout_reset/index.html b/develop/os/core_os/callout/os_callout_reset/index.html
index 6ac9819..88541d3 100644
--- a/develop/os/core_os/callout/os_callout_reset/index.html
+++ b/develop/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/develop/os/core_os/callout/os_callout_stop/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/callout/os_callout_stop/index.html b/develop/os/core_os/callout/os_callout_stop/index.html
index 0495d3c..7185008 100644
--- a/develop/os/core_os/callout/os_callout_stop/index.html
+++ b/develop/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/develop/os/core_os/context_switch/context_switch/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/context_switch/index.html b/develop/os/core_os/context_switch/context_switch/index.html
index 8e0eafd..29b32e0 100644
--- a/develop/os/core_os/context_switch/context_switch/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_arch_ctx_sw/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_arch_ctx_sw/index.html b/develop/os/core_os/context_switch/os_arch_ctx_sw/index.html
index d0276b4..0cfa107 100644
--- a/develop/os/core_os/context_switch/os_arch_ctx_sw/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched/index.html b/develop/os/core_os/context_switch/os_sched/index.html
index 09e651a..9903eb4 100644
--- a/develop/os/core_os/context_switch/os_sched/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html b/develop/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
index 5db500a..382c5b1 100644
--- a/develop/os/core_os/context_switch/os_sched_ctx_sw_hook/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched_get_current_task/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_get_current_task/index.html b/develop/os/core_os/context_switch/os_sched_get_current_task/index.html
index 9624ac2..40e7498 100644
--- a/develop/os/core_os/context_switch/os_sched_get_current_task/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched_insert/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_insert/index.html b/develop/os/core_os/context_switch/os_sched_insert/index.html
index e2489be..0225f4b 100644
--- a/develop/os/core_os/context_switch/os_sched_insert/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched_next_task/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_next_task/index.html b/develop/os/core_os/context_switch/os_sched_next_task/index.html
index 08ba100..af09c2e 100644
--- a/develop/os/core_os/context_switch/os_sched_next_task/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched_os_timer_exp/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_os_timer_exp/index.html b/develop/os/core_os/context_switch/os_sched_os_timer_exp/index.html
index 84ef5d6..cfa8126 100644
--- a/develop/os/core_os/context_switch/os_sched_os_timer_exp/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched_remove/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_remove/index.html b/develop/os/core_os/context_switch/os_sched_remove/index.html
index 92732c1..90dd555 100644
--- a/develop/os/core_os/context_switch/os_sched_remove/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched_resort/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_resort/index.html b/develop/os/core_os/context_switch/os_sched_resort/index.html
index fe1f0af..c9ac4db 100644
--- a/develop/os/core_os/context_switch/os_sched_resort/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched_set_current_task/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_set_current_task/index.html b/develop/os/core_os/context_switch/os_sched_set_current_task/index.html
index 5cc4d8a..d439317 100644
--- a/develop/os/core_os/context_switch/os_sched_set_current_task/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched_sleep/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_sleep/index.html b/develop/os/core_os/context_switch/os_sched_sleep/index.html
index cfe498b..9a55de9 100644
--- a/develop/os/core_os/context_switch/os_sched_sleep/index.html
+++ b/develop/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/develop/os/core_os/context_switch/os_sched_wakeup/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/context_switch/os_sched_wakeup/index.html b/develop/os/core_os/context_switch/os_sched_wakeup/index.html
index aa87c58..67e83d2 100644
--- a/develop/os/core_os/context_switch/os_sched_wakeup/index.html
+++ b/develop/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/develop/os/core_os/cputime/os_cputime/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime/index.html b/develop/os/core_os/cputime/os_cputime/index.html
index 7843a9b..65c6482 100644
--- a/develop/os/core_os/cputime/os_cputime/index.html
+++ b/develop/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/develop/os/core_os/cputime/os_cputime_delay_nsecs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_delay_nsecs/index.html b/develop/os/core_os/cputime/os_cputime_delay_nsecs/index.html
index aacee78..685d1d8 100644
--- a/develop/os/core_os/cputime/os_cputime_delay_nsecs/index.html
+++ b/develop/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/develop/os/core_os/cputime/os_cputime_delay_ticks/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_delay_ticks/index.html b/develop/os/core_os/cputime/os_cputime_delay_ticks/index.html
index eae8951..4127376 100644
--- a/develop/os/core_os/cputime/os_cputime_delay_ticks/index.html
+++ b/develop/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/develop/os/core_os/cputime/os_cputime_delay_usecs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/core_os/cputime/os_cputime_delay_usecs/index.html b/develop/os/core_os/cputime/os_cputime_delay_usecs/index.html
index e6b4e68..e40d8c7 100644
--- a/develop/os/core_os/cputime/os_cputime_delay_usecs/index.html
+++ b/develop/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>
   
   



[08/13] incubator-mynewt-site git commit: Simplified installation for newt and newtmgr. Updates to vanity domain. #171 and #172

Posted by ad...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/modules/console/console_echo/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_echo/index.html b/develop/os/modules/console/console_echo/index.html
index 5ee8803..ac9470a 100644
--- a/develop/os/modules/console/console_echo/index.html
+++ b/develop/os/modules/console/console_echo/index.html
@@ -570,7 +570,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/develop/os/modules/console/console_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_init/index.html b/develop/os/modules/console/console_init/index.html
index 9901387..bcd0850 100644
--- a/develop/os/modules/console/console_init/index.html
+++ b/develop/os/modules/console/console_init/index.html
@@ -570,7 +570,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/develop/os/modules/console/console_is_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_is_init/index.html b/develop/os/modules/console/console_is_init/index.html
index b96e32e..566ad50 100644
--- a/develop/os/modules/console/console_is_init/index.html
+++ b/develop/os/modules/console/console_is_init/index.html
@@ -570,7 +570,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/develop/os/modules/console/console_printf/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_printf/index.html b/develop/os/modules/console/console_printf/index.html
index a894e64..88e5fab 100644
--- a/develop/os/modules/console/console_printf/index.html
+++ b/develop/os/modules/console/console_printf/index.html
@@ -570,7 +570,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/develop/os/modules/console/console_read/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_read/index.html b/develop/os/modules/console/console_read/index.html
index 7a079da..d783f2e 100644
--- a/develop/os/modules/console/console_read/index.html
+++ b/develop/os/modules/console/console_read/index.html
@@ -570,7 +570,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/develop/os/modules/console/console_write/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/console/console_write/index.html b/develop/os/modules/console/console_write/index.html
index 6982884..ea07368 100644
--- a/develop/os/modules/console/console_write/index.html
+++ b/develop/os/modules/console/console_write/index.html
@@ -570,7 +570,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/develop/os/modules/devmgmt/customize_newtmgr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/devmgmt/customize_newtmgr/index.html b/develop/os/modules/devmgmt/customize_newtmgr/index.html
index ca2857d..d934088 100644
--- a/develop/os/modules/devmgmt/customize_newtmgr/index.html
+++ b/develop/os/modules/devmgmt/customize_newtmgr/index.html
@@ -513,7 +513,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/develop/os/modules/devmgmt/newtmgr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/devmgmt/newtmgr/index.html b/develop/os/modules/devmgmt/newtmgr/index.html
index a2b5483..66cd7fb 100644
--- a/develop/os/modules/devmgmt/newtmgr/index.html
+++ b/develop/os/modules/devmgmt/newtmgr/index.html
@@ -513,7 +513,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/develop/os/modules/devmgmt/oicmgr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/devmgmt/oicmgr/index.html b/develop/os/modules/devmgmt/oicmgr/index.html
index f9a8a92..fc994b7 100644
--- a/develop/os/modules/devmgmt/oicmgr/index.html
+++ b/develop/os/modules/devmgmt/oicmgr/index.html
@@ -513,7 +513,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/develop/os/modules/drivers/driver/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/drivers/driver/index.html b/develop/os/modules/drivers/driver/index.html
index 3a80829..265adb8 100644
--- a/develop/os/modules/drivers/driver/index.html
+++ b/develop/os/modules/drivers/driver/index.html
@@ -510,7 +510,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/develop/os/modules/drivers/flash/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/drivers/flash/index.html b/develop/os/modules/drivers/flash/index.html
index e68ef89..c6e3334 100644
--- a/develop/os/modules/drivers/flash/index.html
+++ b/develop/os/modules/drivers/flash/index.html
@@ -538,7 +538,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/develop/os/modules/drivers/mmc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/drivers/mmc/index.html b/develop/os/modules/drivers/mmc/index.html
index 62d03e6..853c282 100644
--- a/develop/os/modules/drivers/mmc/index.html
+++ b/develop/os/modules/drivers/mmc/index.html
@@ -538,7 +538,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/develop/os/modules/fcb/fcb/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb/index.html b/develop/os/modules/fcb/fcb/index.html
index e4ba5de..c9e894c 100644
--- a/develop/os/modules/fcb/fcb/index.html
+++ b/develop/os/modules/fcb/fcb/index.html
@@ -510,7 +510,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/develop/os/modules/fcb/fcb_append/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_append/index.html b/develop/os/modules/fcb/fcb_append/index.html
index ff2840f..4a27430 100644
--- a/develop/os/modules/fcb/fcb_append/index.html
+++ b/develop/os/modules/fcb/fcb_append/index.html
@@ -594,7 +594,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/develop/os/modules/fcb/fcb_append_finish/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_append_finish/index.html b/develop/os/modules/fcb/fcb_append_finish/index.html
index db2a28f..e379ba0 100644
--- a/develop/os/modules/fcb/fcb_append_finish/index.html
+++ b/develop/os/modules/fcb/fcb_append_finish/index.html
@@ -594,7 +594,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/develop/os/modules/fcb/fcb_append_to_scratch/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_append_to_scratch/index.html b/develop/os/modules/fcb/fcb_append_to_scratch/index.html
index 74e82c1..1752def 100644
--- a/develop/os/modules/fcb/fcb_append_to_scratch/index.html
+++ b/develop/os/modules/fcb/fcb_append_to_scratch/index.html
@@ -594,7 +594,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/develop/os/modules/fcb/fcb_clear/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_clear/index.html b/develop/os/modules/fcb/fcb_clear/index.html
index db462ac..0a18137 100644
--- a/develop/os/modules/fcb/fcb_clear/index.html
+++ b/develop/os/modules/fcb/fcb_clear/index.html
@@ -594,7 +594,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/develop/os/modules/fcb/fcb_getnext/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_getnext/index.html b/develop/os/modules/fcb/fcb_getnext/index.html
index 6f0142f..56af9e2 100644
--- a/develop/os/modules/fcb/fcb_getnext/index.html
+++ b/develop/os/modules/fcb/fcb_getnext/index.html
@@ -594,7 +594,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/develop/os/modules/fcb/fcb_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_init/index.html b/develop/os/modules/fcb/fcb_init/index.html
index 470868a..d42fa76 100644
--- a/develop/os/modules/fcb/fcb_init/index.html
+++ b/develop/os/modules/fcb/fcb_init/index.html
@@ -594,7 +594,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/develop/os/modules/fcb/fcb_is_empty/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_is_empty/index.html b/develop/os/modules/fcb/fcb_is_empty/index.html
index 3ecbd2e..b90b42d 100644
--- a/develop/os/modules/fcb/fcb_is_empty/index.html
+++ b/develop/os/modules/fcb/fcb_is_empty/index.html
@@ -594,7 +594,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/develop/os/modules/fcb/fcb_offset_last_n/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_offset_last_n/index.html b/develop/os/modules/fcb/fcb_offset_last_n/index.html
index 8b104f5..7075190 100644
--- a/develop/os/modules/fcb/fcb_offset_last_n/index.html
+++ b/develop/os/modules/fcb/fcb_offset_last_n/index.html
@@ -594,7 +594,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/develop/os/modules/fcb/fcb_rotate/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_rotate/index.html b/develop/os/modules/fcb/fcb_rotate/index.html
index 47ed626..593b9fa 100644
--- a/develop/os/modules/fcb/fcb_rotate/index.html
+++ b/develop/os/modules/fcb/fcb_rotate/index.html
@@ -594,7 +594,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/develop/os/modules/fcb/fcb_walk/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fcb/fcb_walk/index.html b/develop/os/modules/fcb/fcb_walk/index.html
index e0b5ec7..a5eedd0 100644
--- a/develop/os/modules/fcb/fcb_walk/index.html
+++ b/develop/os/modules/fcb/fcb_walk/index.html
@@ -594,7 +594,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/develop/os/modules/fs/fatfs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fatfs/index.html b/develop/os/modules/fs/fatfs/index.html
index 9364798..f9aa74e 100644
--- a/develop/os/modules/fs/fatfs/index.html
+++ b/develop/os/modules/fs/fatfs/index.html
@@ -533,7 +533,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/develop/os/modules/fs/fs/fs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs/index.html b/develop/os/modules/fs/fs/fs/index.html
index 87a14c8..a82d360 100644
--- a/develop/os/modules/fs/fs/fs/index.html
+++ b/develop/os/modules/fs/fs/fs/index.html
@@ -573,7 +573,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/develop/os/modules/fs/fs/fs_close/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_close/index.html b/develop/os/modules/fs/fs/fs_close/index.html
index 9d481fc..3293131 100644
--- a/develop/os/modules/fs/fs/fs_close/index.html
+++ b/develop/os/modules/fs/fs/fs_close/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_closedir/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_closedir/index.html b/develop/os/modules/fs/fs/fs_closedir/index.html
index ee46cc3..117a086 100644
--- a/develop/os/modules/fs/fs/fs_closedir/index.html
+++ b/develop/os/modules/fs/fs/fs_closedir/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_dirent_is_dir/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_dirent_is_dir/index.html b/develop/os/modules/fs/fs/fs_dirent_is_dir/index.html
index 70c2a45..e99bde6 100644
--- a/develop/os/modules/fs/fs/fs_dirent_is_dir/index.html
+++ b/develop/os/modules/fs/fs/fs_dirent_is_dir/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_dirent_name/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_dirent_name/index.html b/develop/os/modules/fs/fs/fs_dirent_name/index.html
index 8895a56..80237b2 100644
--- a/develop/os/modules/fs/fs/fs_dirent_name/index.html
+++ b/develop/os/modules/fs/fs/fs_dirent_name/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_filelen/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_filelen/index.html b/develop/os/modules/fs/fs/fs_filelen/index.html
index a872a73..b3508b8 100644
--- a/develop/os/modules/fs/fs/fs_filelen/index.html
+++ b/develop/os/modules/fs/fs/fs_filelen/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_getpos/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_getpos/index.html b/develop/os/modules/fs/fs/fs_getpos/index.html
index e860ee5..7ba185e 100644
--- a/develop/os/modules/fs/fs/fs_getpos/index.html
+++ b/develop/os/modules/fs/fs/fs_getpos/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_mkdir/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_mkdir/index.html b/develop/os/modules/fs/fs/fs_mkdir/index.html
index ac499d6..874dc45 100644
--- a/develop/os/modules/fs/fs/fs_mkdir/index.html
+++ b/develop/os/modules/fs/fs/fs_mkdir/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_open/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_open/index.html b/develop/os/modules/fs/fs/fs_open/index.html
index a5428bd..dc5c021 100644
--- a/develop/os/modules/fs/fs/fs_open/index.html
+++ b/develop/os/modules/fs/fs/fs_open/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_opendir/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_opendir/index.html b/develop/os/modules/fs/fs/fs_opendir/index.html
index ab8006f..ec78ad8 100644
--- a/develop/os/modules/fs/fs/fs_opendir/index.html
+++ b/develop/os/modules/fs/fs/fs_opendir/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_ops/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_ops/index.html b/develop/os/modules/fs/fs/fs_ops/index.html
index 391d522..3c12156 100644
--- a/develop/os/modules/fs/fs/fs_ops/index.html
+++ b/develop/os/modules/fs/fs/fs_ops/index.html
@@ -585,7 +585,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/develop/os/modules/fs/fs/fs_read/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_read/index.html b/develop/os/modules/fs/fs/fs_read/index.html
index 9f75d70..f1a9f37 100644
--- a/develop/os/modules/fs/fs/fs_read/index.html
+++ b/develop/os/modules/fs/fs/fs_read/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_readdir/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_readdir/index.html b/develop/os/modules/fs/fs/fs_readdir/index.html
index 7cd8da6..51c46d8 100644
--- a/develop/os/modules/fs/fs/fs_readdir/index.html
+++ b/develop/os/modules/fs/fs/fs_readdir/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_register/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_register/index.html b/develop/os/modules/fs/fs/fs_register/index.html
index 9e38f1f..6017c8b 100644
--- a/develop/os/modules/fs/fs/fs_register/index.html
+++ b/develop/os/modules/fs/fs/fs_register/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_rename/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_rename/index.html b/develop/os/modules/fs/fs/fs_rename/index.html
index 8572b2f..0af95ca 100644
--- a/develop/os/modules/fs/fs/fs_rename/index.html
+++ b/develop/os/modules/fs/fs/fs_rename/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_return_codes/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_return_codes/index.html b/develop/os/modules/fs/fs/fs_return_codes/index.html
index 3d357e8..de4ab03 100644
--- a/develop/os/modules/fs/fs/fs_return_codes/index.html
+++ b/develop/os/modules/fs/fs/fs_return_codes/index.html
@@ -573,7 +573,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/develop/os/modules/fs/fs/fs_seek/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_seek/index.html b/develop/os/modules/fs/fs/fs_seek/index.html
index dbac53e..facb4d1 100644
--- a/develop/os/modules/fs/fs/fs_seek/index.html
+++ b/develop/os/modules/fs/fs/fs_seek/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_unlink/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_unlink/index.html b/develop/os/modules/fs/fs/fs_unlink/index.html
index 84a93ae..f22f60a 100644
--- a/develop/os/modules/fs/fs/fs_unlink/index.html
+++ b/develop/os/modules/fs/fs/fs_unlink/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fs_write/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fs_write/index.html b/develop/os/modules/fs/fs/fs_write/index.html
index 356f841..1a57377 100644
--- a/develop/os/modules/fs/fs/fs_write/index.html
+++ b/develop/os/modules/fs/fs/fs_write/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fsutil_read_file/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fsutil_read_file/index.html b/develop/os/modules/fs/fs/fsutil_read_file/index.html
index a78ea5f..b532b2a 100644
--- a/develop/os/modules/fs/fs/fsutil_read_file/index.html
+++ b/develop/os/modules/fs/fs/fsutil_read_file/index.html
@@ -721,7 +721,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/develop/os/modules/fs/fs/fsutil_write_file/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/fs/fsutil_write_file/index.html b/develop/os/modules/fs/fs/fsutil_write_file/index.html
index ae57e94..c9203a9 100644
--- a/develop/os/modules/fs/fs/fsutil_write_file/index.html
+++ b/develop/os/modules/fs/fs/fsutil_write_file/index.html
@@ -721,7 +721,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/develop/os/modules/fs/nffs/nffs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs/index.html b/develop/os/modules/fs/nffs/nffs/index.html
index 99621b0..1e7b7dc 100644
--- a/develop/os/modules/fs/nffs/nffs/index.html
+++ b/develop/os/modules/fs/nffs/nffs/index.html
@@ -573,7 +573,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/develop/os/modules/fs/nffs/nffs_area_desc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_area_desc/index.html b/develop/os/modules/fs/nffs/nffs_area_desc/index.html
index 64b9ff1..84f8a90 100644
--- a/develop/os/modules/fs/nffs/nffs_area_desc/index.html
+++ b/develop/os/modules/fs/nffs/nffs_area_desc/index.html
@@ -593,7 +593,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/develop/os/modules/fs/nffs/nffs_config/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_config/index.html b/develop/os/modules/fs/nffs/nffs_config/index.html
index f448e1c..12c7c43 100644
--- a/develop/os/modules/fs/nffs/nffs_config/index.html
+++ b/develop/os/modules/fs/nffs/nffs_config/index.html
@@ -593,7 +593,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/develop/os/modules/fs/nffs/nffs_detect/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_detect/index.html b/develop/os/modules/fs/nffs/nffs_detect/index.html
index 33c85d2..ede22ff 100644
--- a/develop/os/modules/fs/nffs/nffs_detect/index.html
+++ b/develop/os/modules/fs/nffs/nffs_detect/index.html
@@ -601,7 +601,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/develop/os/modules/fs/nffs/nffs_format/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_format/index.html b/develop/os/modules/fs/nffs/nffs_format/index.html
index b568e40..7adbb1f 100644
--- a/develop/os/modules/fs/nffs/nffs_format/index.html
+++ b/develop/os/modules/fs/nffs/nffs_format/index.html
@@ -601,7 +601,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/develop/os/modules/fs/nffs/nffs_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_init/index.html b/develop/os/modules/fs/nffs/nffs_init/index.html
index 63980c2..0bb2c2e 100644
--- a/develop/os/modules/fs/nffs/nffs_init/index.html
+++ b/develop/os/modules/fs/nffs/nffs_init/index.html
@@ -601,7 +601,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/develop/os/modules/fs/nffs/nffs_internals/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/nffs/nffs_internals/index.html b/develop/os/modules/fs/nffs/nffs_internals/index.html
index 9a2bc0a..ed4655b 100644
--- a/develop/os/modules/fs/nffs/nffs_internals/index.html
+++ b/develop/os/modules/fs/nffs/nffs_internals/index.html
@@ -573,7 +573,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/develop/os/modules/fs/otherfs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/fs/otherfs/index.html b/develop/os/modules/fs/otherfs/index.html
index b048c62..eb963f2 100644
--- a/develop/os/modules/fs/otherfs/index.html
+++ b/develop/os/modules/fs/otherfs/index.html
@@ -533,7 +533,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/develop/os/modules/hal/hal/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal/index.html b/develop/os/modules/hal/hal/index.html
index f75abb2..fc7cdb1 100644
--- a/develop/os/modules/hal/hal/index.html
+++ b/develop/os/modules/hal/hal/index.html
@@ -526,7 +526,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/develop/os/modules/hal/hal_api/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_api/index.html b/develop/os/modules/hal/hal_api/index.html
index fd5cc7c..ccd1b4e 100644
--- a/develop/os/modules/hal/hal_api/index.html
+++ b/develop/os/modules/hal/hal_api/index.html
@@ -623,7 +623,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/develop/os/modules/hal/hal_bsp/hal_bsp/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_bsp/hal_bsp/index.html b/develop/os/modules/hal/hal_bsp/hal_bsp/index.html
index 440310f..2f9aa0d 100644
--- a/develop/os/modules/hal/hal_bsp/hal_bsp/index.html
+++ b/develop/os/modules/hal/hal_bsp/hal_bsp/index.html
@@ -623,7 +623,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/develop/os/modules/hal/hal_creation/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_creation/index.html b/develop/os/modules/hal/hal_creation/index.html
index fb18ae4..9d5527b 100644
--- a/develop/os/modules/hal/hal_creation/index.html
+++ b/develop/os/modules/hal/hal_creation/index.html
@@ -526,7 +526,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/develop/os/modules/hal/hal_flash/hal_flash/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_flash/hal_flash/index.html b/develop/os/modules/hal/hal_flash/hal_flash/index.html
index 011e266..03e4682 100644
--- a/develop/os/modules/hal/hal_flash/hal_flash/index.html
+++ b/develop/os/modules/hal/hal_flash/hal_flash/index.html
@@ -643,7 +643,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/develop/os/modules/hal/hal_flash/hal_flash_int/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_flash/hal_flash_int/index.html b/develop/os/modules/hal/hal_flash/hal_flash_int/index.html
index 48c4d14..4b060ff 100644
--- a/develop/os/modules/hal/hal_flash/hal_flash_int/index.html
+++ b/develop/os/modules/hal/hal_flash/hal_flash_int/index.html
@@ -643,7 +643,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/develop/os/modules/hal/hal_gpio/hal_gpio/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_gpio/hal_gpio/index.html b/develop/os/modules/hal/hal_gpio/hal_gpio/index.html
index 5b06300..8f9f8ba 100644
--- a/develop/os/modules/hal/hal_gpio/hal_gpio/index.html
+++ b/develop/os/modules/hal/hal_gpio/hal_gpio/index.html
@@ -623,7 +623,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/develop/os/modules/hal/hal_i2c/hal_i2c/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_i2c/hal_i2c/index.html b/develop/os/modules/hal/hal_i2c/hal_i2c/index.html
index 8080d7b..85e3ac2 100644
--- a/develop/os/modules/hal/hal_i2c/hal_i2c/index.html
+++ b/develop/os/modules/hal/hal_i2c/hal_i2c/index.html
@@ -623,7 +623,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/develop/os/modules/hal/hal_in_libraries/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_in_libraries/index.html b/develop/os/modules/hal/hal_in_libraries/index.html
index 8e2076b..869d18a 100644
--- a/develop/os/modules/hal/hal_in_libraries/index.html
+++ b/develop/os/modules/hal/hal_in_libraries/index.html
@@ -526,7 +526,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/develop/os/modules/hal/hal_os_tick/hal_os_tick/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_os_tick/hal_os_tick/index.html b/develop/os/modules/hal/hal_os_tick/hal_os_tick/index.html
index a77bbdf..958b91f 100644
--- a/develop/os/modules/hal/hal_os_tick/hal_os_tick/index.html
+++ b/develop/os/modules/hal/hal_os_tick/hal_os_tick/index.html
@@ -623,7 +623,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/develop/os/modules/hal/hal_spi/hal_spi/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_spi/hal_spi/index.html b/develop/os/modules/hal/hal_spi/hal_spi/index.html
index 74ab2ee..6ab0bd8 100644
--- a/develop/os/modules/hal/hal_spi/hal_spi/index.html
+++ b/develop/os/modules/hal/hal_spi/hal_spi/index.html
@@ -623,7 +623,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/develop/os/modules/hal/hal_system/hal_sys/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_system/hal_sys/index.html b/develop/os/modules/hal/hal_system/hal_sys/index.html
index 0937cd8..64fbb80 100644
--- a/develop/os/modules/hal/hal_system/hal_sys/index.html
+++ b/develop/os/modules/hal/hal_system/hal_sys/index.html
@@ -623,7 +623,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/develop/os/modules/hal/hal_timer/hal_timer/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_timer/hal_timer/index.html b/develop/os/modules/hal/hal_timer/hal_timer/index.html
index d36a742..77cf9bc 100644
--- a/develop/os/modules/hal/hal_timer/hal_timer/index.html
+++ b/develop/os/modules/hal/hal_timer/hal_timer/index.html
@@ -623,7 +623,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/develop/os/modules/hal/hal_uart/hal_uart/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_uart/hal_uart/index.html b/develop/os/modules/hal/hal_uart/hal_uart/index.html
index f3c0711..f9bcb72 100644
--- a/develop/os/modules/hal/hal_uart/hal_uart/index.html
+++ b/develop/os/modules/hal/hal_uart/hal_uart/index.html
@@ -623,7 +623,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/develop/os/modules/hal/hal_watchdog/hal_watchdog/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/hal/hal_watchdog/hal_watchdog/index.html b/develop/os/modules/hal/hal_watchdog/hal_watchdog/index.html
index 17dc8a3..51a926a 100644
--- a/develop/os/modules/hal/hal_watchdog/hal_watchdog/index.html
+++ b/develop/os/modules/hal/hal_watchdog/hal_watchdog/index.html
@@ -623,7 +623,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/develop/os/modules/imgmgr/imgmgr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/imgmgr/imgmgr/index.html b/develop/os/modules/imgmgr/imgmgr/index.html
index e4516e5..b7de587 100644
--- a/develop/os/modules/imgmgr/imgmgr/index.html
+++ b/develop/os/modules/imgmgr/imgmgr/index.html
@@ -510,7 +510,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/develop/os/modules/imgmgr/imgr_ver_parse/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/imgmgr/imgr_ver_parse/index.html b/develop/os/modules/imgmgr/imgr_ver_parse/index.html
index 2ebfec0..96dd465 100644
--- a/develop/os/modules/imgmgr/imgr_ver_parse/index.html
+++ b/develop/os/modules/imgmgr/imgr_ver_parse/index.html
@@ -530,7 +530,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/develop/os/modules/imgmgr/imgr_ver_str/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/imgmgr/imgr_ver_str/index.html b/develop/os/modules/imgmgr/imgr_ver_str/index.html
index a24f91e..f080f31 100644
--- a/develop/os/modules/imgmgr/imgr_ver_str/index.html
+++ b/develop/os/modules/imgmgr/imgr_ver_str/index.html
@@ -530,7 +530,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/develop/os/modules/json/json/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json/index.html b/develop/os/modules/json/json/index.html
index 4aab67c..854140a 100644
--- a/develop/os/modules/json/json/index.html
+++ b/develop/os/modules/json/json/index.html
@@ -510,7 +510,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/develop/os/modules/json/json_encode_object_entry/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json_encode_object_entry/index.html b/develop/os/modules/json/json_encode_object_entry/index.html
index 1379374..6a01f50 100644
--- a/develop/os/modules/json/json_encode_object_entry/index.html
+++ b/develop/os/modules/json/json_encode_object_entry/index.html
@@ -554,7 +554,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/develop/os/modules/json/json_encode_object_finish/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json_encode_object_finish/index.html b/develop/os/modules/json/json_encode_object_finish/index.html
index 36d85cb..37b4f69 100644
--- a/develop/os/modules/json/json_encode_object_finish/index.html
+++ b/develop/os/modules/json/json_encode_object_finish/index.html
@@ -554,7 +554,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/develop/os/modules/json/json_encode_object_key/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json_encode_object_key/index.html b/develop/os/modules/json/json_encode_object_key/index.html
index 4725bdd..e5aa815 100644
--- a/develop/os/modules/json/json_encode_object_key/index.html
+++ b/develop/os/modules/json/json_encode_object_key/index.html
@@ -554,7 +554,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/develop/os/modules/json/json_encode_object_start/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json_encode_object_start/index.html b/develop/os/modules/json/json_encode_object_start/index.html
index 376371b..3cb08bb 100644
--- a/develop/os/modules/json/json_encode_object_start/index.html
+++ b/develop/os/modules/json/json_encode_object_start/index.html
@@ -554,7 +554,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/develop/os/modules/json/json_read_object/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/json/json_read_object/index.html b/develop/os/modules/json/json_read_object/index.html
index fdbe64d..0813e64 100644
--- a/develop/os/modules/json/json_read_object/index.html
+++ b/develop/os/modules/json/json_read_object/index.html
@@ -554,7 +554,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/develop/os/modules/logs/logs/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/logs/logs/index.html b/develop/os/modules/logs/logs/index.html
index 173b815..291dab7 100644
--- a/develop/os/modules/logs/logs/index.html
+++ b/develop/os/modules/logs/logs/index.html
@@ -497,7 +497,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/develop/os/modules/shell/shell/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/shell/shell/index.html b/develop/os/modules/shell/shell/index.html
index 2311237..ceb3a89 100644
--- a/develop/os/modules/shell/shell/index.html
+++ b/develop/os/modules/shell/shell/index.html
@@ -510,7 +510,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/develop/os/modules/shell/shell_cmd_register/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/shell/shell_cmd_register/index.html b/develop/os/modules/shell/shell_cmd_register/index.html
index c8ab247..689db4a 100644
--- a/develop/os/modules/shell/shell_cmd_register/index.html
+++ b/develop/os/modules/shell/shell_cmd_register/index.html
@@ -546,7 +546,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/develop/os/modules/shell/shell_evq_set/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/shell/shell_evq_set/index.html b/develop/os/modules/shell/shell_evq_set/index.html
index 9a404ae..74d7004 100644
--- a/develop/os/modules/shell/shell_evq_set/index.html
+++ b/develop/os/modules/shell/shell_evq_set/index.html
@@ -546,7 +546,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/develop/os/modules/shell/shell_nlip_input_register/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/shell/shell_nlip_input_register/index.html b/develop/os/modules/shell/shell_nlip_input_register/index.html
index a720b5d..2fef4ad 100644
--- a/develop/os/modules/shell/shell_nlip_input_register/index.html
+++ b/develop/os/modules/shell/shell_nlip_input_register/index.html
@@ -546,7 +546,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/develop/os/modules/shell/shell_nlip_output/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/shell/shell_nlip_output/index.html b/develop/os/modules/shell/shell_nlip_output/index.html
index 565fbc8..be21cbe 100644
--- a/develop/os/modules/shell/shell_nlip_output/index.html
+++ b/develop/os/modules/shell/shell_nlip_output/index.html
@@ -546,7 +546,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/develop/os/modules/split/split/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/split/split/index.html b/develop/os/modules/split/split/index.html
index 44cb84c..09a1991 100644
--- a/develop/os/modules/split/split/index.html
+++ b/develop/os/modules/split/split/index.html
@@ -497,7 +497,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/develop/os/modules/stats/stats/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/stats/stats/index.html b/develop/os/modules/stats/stats/index.html
index 3686639..1e1a383 100644
--- a/develop/os/modules/stats/stats/index.html
+++ b/develop/os/modules/stats/stats/index.html
@@ -497,7 +497,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/develop/os/modules/sysinitconfig/sysconfig_error/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/sysinitconfig/sysconfig_error/index.html b/develop/os/modules/sysinitconfig/sysconfig_error/index.html
index f63006e..b632f8c 100644
--- a/develop/os/modules/sysinitconfig/sysconfig_error/index.html
+++ b/develop/os/modules/sysinitconfig/sysconfig_error/index.html
@@ -505,7 +505,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/develop/os/modules/sysinitconfig/sysinitconfig/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/sysinitconfig/sysinitconfig/index.html b/develop/os/modules/sysinitconfig/sysinitconfig/index.html
index f03002d..b6f3888 100644
--- a/develop/os/modules/sysinitconfig/sysinitconfig/index.html
+++ b/develop/os/modules/sysinitconfig/sysinitconfig/index.html
@@ -505,7 +505,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/develop/os/modules/testutil/test_assert/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/test_assert/index.html b/develop/os/modules/testutil/test_assert/index.html
index db35786..6b85e44 100644
--- a/develop/os/modules/testutil/test_assert/index.html
+++ b/develop/os/modules/testutil/test_assert/index.html
@@ -570,7 +570,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/develop/os/modules/testutil/test_case/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/test_case/index.html b/develop/os/modules/testutil/test_case/index.html
index eb10d40..60d3af5 100644
--- a/develop/os/modules/testutil/test_case/index.html
+++ b/develop/os/modules/testutil/test_case/index.html
@@ -570,7 +570,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/develop/os/modules/testutil/test_decl/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/test_decl/index.html b/develop/os/modules/testutil/test_decl/index.html
index 7b99526..b731da4 100644
--- a/develop/os/modules/testutil/test_decl/index.html
+++ b/develop/os/modules/testutil/test_decl/index.html
@@ -570,7 +570,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/develop/os/modules/testutil/test_pass/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/test_pass/index.html b/develop/os/modules/testutil/test_pass/index.html
index ac6f326..afc94f7 100644
--- a/develop/os/modules/testutil/test_pass/index.html
+++ b/develop/os/modules/testutil/test_pass/index.html
@@ -570,7 +570,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/develop/os/modules/testutil/test_suite/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/test_suite/index.html b/develop/os/modules/testutil/test_suite/index.html
index 591d9e3..0138759 100644
--- a/develop/os/modules/testutil/test_suite/index.html
+++ b/develop/os/modules/testutil/test_suite/index.html
@@ -570,7 +570,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/develop/os/modules/testutil/testutil/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/testutil/index.html b/develop/os/modules/testutil/testutil/index.html
index 2a0e0a7..e3c0d33 100644
--- a/develop/os/modules/testutil/testutil/index.html
+++ b/develop/os/modules/testutil/testutil/index.html
@@ -510,7 +510,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/develop/os/modules/testutil/tu_init/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/tu_init/index.html b/develop/os/modules/testutil/tu_init/index.html
index 1d7762e..13a0926 100644
--- a/develop/os/modules/testutil/tu_init/index.html
+++ b/develop/os/modules/testutil/tu_init/index.html
@@ -570,7 +570,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/develop/os/modules/testutil/tu_restart/index.html
----------------------------------------------------------------------
diff --git a/develop/os/modules/testutil/tu_restart/index.html b/develop/os/modules/testutil/tu_restart/index.html
index 6f450ca..d87b92c 100644
--- a/develop/os/modules/testutil/tu_restart/index.html
+++ b/develop/os/modules/testutil/tu_restart/index.html
@@ -570,7 +570,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/develop/os/os_user_guide/index.html
----------------------------------------------------------------------
diff --git a/develop/os/os_user_guide/index.html b/develop/os/os_user_guide/index.html
index 3c94f50..1929ba4 100644
--- a/develop/os/os_user_guide/index.html
+++ b/develop/os/os_user_guide/index.html
@@ -491,7 +491,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/develop/os/tutorials/STM32F303/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/STM32F303/index.html b/develop/os/tutorials/STM32F303/index.html
index 28c8948..00802d0 100644
--- a/develop/os/tutorials/STM32F303/index.html
+++ b/develop/os/tutorials/STM32F303/index.html
@@ -515,7 +515,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/develop/os/tutorials/add_newtmgr/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/add_newtmgr/index.html b/develop/os/tutorials/add_newtmgr/index.html
index c2666a2..689a114 100644
--- a/develop/os/tutorials/add_newtmgr/index.html
+++ b/develop/os/tutorials/add_newtmgr/index.html
@@ -436,7 +436,7 @@
   
   
     <li><a href="
-  ../../../faq/how_to_edit_docs/
+  ../../../faq/go_env/
 ">Appendix</a>
   
   
@@ -491,7 +491,7 @@ to customize your application.</p>
 <p>Ensure that you have met the following prerequisites before continuing with this tutorial:</p>
 <ul>
 <li>Install the <a href="../../../newt/install/newt_mac/">newt tool</a>. </li>
-<li>Install the <a href="../../../newtmgr/installing/">newtmgr tool</a>.</li>
+<li>Install the <a href="../../../newtmgr/install_mac/">newtmgr tool</a>.</li>
 <li>Have Internet connectivity to fetch remote Mynewt components.</li>
 <li>Install the <a href="../../get_started/native_tools/">compiler tools</a> to 
 support native compiling to build the project this tutorial creates.  </li>
@@ -598,7 +598,7 @@ $ newt load myble
 <p>The newtmgr tool requires a connection profile in order to connect to your board. If you have not done so, 
 follow the <a href="../../../newtmgr/command_list/newtmgr_conn/">instructions</a> for setting up your connection profile.</p>
 <p><br></p>
-<h3 id="connecting-with-your-application">Connecting with Your Application</h3>
+<h3 id="communicate-with-your-application">Communicate with Your Application</h3>
 <p>Once you have a connection profile set up, you can connect to your device with <code>newtmgr -c myconn &lt;command&gt;</code> to run commands in your application. </p>
 <p>Issue the <code>echo</code> command to ensure that your application is communicating with the newtmgr tool:</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%"># newtmgr -c myconn echo hello

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/tutorials/add_shell/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/add_shell/index.html b/develop/os/tutorials/add_shell/index.html
index 764f1e1..e5d907f 100644
--- a/develop/os/tutorials/add_shell/index.html
+++ b/develop/os/tutorials/add_shell/index.html
@@ -436,7 +436,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/develop/os/tutorials/air_quality_ble/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/air_quality_ble/index.html b/develop/os/tutorials/air_quality_ble/index.html
index 6505425..f54286b 100644
--- a/develop/os/tutorials/air_quality_ble/index.html
+++ b/develop/os/tutorials/air_quality_ble/index.html
@@ -456,7 +456,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/develop/os/tutorials/air_quality_sensor/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/air_quality_sensor/index.html b/develop/os/tutorials/air_quality_sensor/index.html
index 22a8817..42f961e 100644
--- a/develop/os/tutorials/air_quality_sensor/index.html
+++ b/develop/os/tutorials/air_quality_sensor/index.html
@@ -456,7 +456,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/develop/os/tutorials/arduino_zero/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/arduino_zero/index.html b/develop/os/tutorials/arduino_zero/index.html
index 4c7eeb8..9620a75 100644
--- a/develop/os/tutorials/arduino_zero/index.html
+++ b/develop/os/tutorials/arduino_zero/index.html
@@ -501,7 +501,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/develop/os/tutorials/blehci_project/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/blehci_project/index.html b/develop/os/tutorials/blehci_project/index.html
index a973afc..de2973b 100644
--- a/develop/os/tutorials/blehci_project/index.html
+++ b/develop/os/tutorials/blehci_project/index.html
@@ -436,7 +436,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/develop/os/tutorials/bleprph/bleprph-adv/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-adv/index.html b/develop/os/tutorials/bleprph/bleprph-adv/index.html
index 688efbf..7c4408b 100644
--- a/develop/os/tutorials/bleprph/bleprph-adv/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-adv/index.html
@@ -482,7 +482,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/develop/os/tutorials/bleprph/bleprph-app/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-app/index.html b/develop/os/tutorials/bleprph/bleprph-app/index.html
index 220651a..fbcfc77 100644
--- a/develop/os/tutorials/bleprph/bleprph-app/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-app/index.html
@@ -482,7 +482,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/develop/os/tutorials/bleprph/bleprph-chr-access/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-chr-access/index.html b/develop/os/tutorials/bleprph/bleprph-chr-access/index.html
index 0461c35..5ce0397 100644
--- a/develop/os/tutorials/bleprph/bleprph-chr-access/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-chr-access/index.html
@@ -482,7 +482,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/develop/os/tutorials/bleprph/bleprph-gap-event/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-gap-event/index.html b/develop/os/tutorials/bleprph/bleprph-gap-event/index.html
index f8dbe91..57c7976 100644
--- a/develop/os/tutorials/bleprph/bleprph-gap-event/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-gap-event/index.html
@@ -482,7 +482,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/develop/os/tutorials/bleprph/bleprph-intro/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-intro/index.html b/develop/os/tutorials/bleprph/bleprph-intro/index.html
index 7ff4d3e..0736cd4 100644
--- a/develop/os/tutorials/bleprph/bleprph-intro/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-intro/index.html
@@ -482,7 +482,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/develop/os/tutorials/bleprph/bleprph-svc-reg/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bleprph/bleprph-svc-reg/index.html b/develop/os/tutorials/bleprph/bleprph-svc-reg/index.html
index af4fe01..730622e 100644
--- a/develop/os/tutorials/bleprph/bleprph-svc-reg/index.html
+++ b/develop/os/tutorials/bleprph/bleprph-svc-reg/index.html
@@ -482,7 +482,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/develop/os/tutorials/bletiny_project/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/bletiny_project/index.html b/develop/os/tutorials/bletiny_project/index.html
index 868cc7b..0e52dcf 100644
--- a/develop/os/tutorials/bletiny_project/index.html
+++ b/develop/os/tutorials/bletiny_project/index.html
@@ -436,7 +436,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/develop/os/tutorials/blinky/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/blinky/index.html b/develop/os/tutorials/blinky/index.html
index c5644bb..0493a2a 100644
--- a/develop/os/tutorials/blinky/index.html
+++ b/develop/os/tutorials/blinky/index.html
@@ -501,7 +501,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/develop/os/tutorials/blinky_console/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/blinky_console/index.html b/develop/os/tutorials/blinky_console/index.html
index d0157d9..2e8f957 100644
--- a/develop/os/tutorials/blinky_console/index.html
+++ b/develop/os/tutorials/blinky_console/index.html
@@ -501,7 +501,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/develop/os/tutorials/blinky_primo/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/blinky_primo/index.html b/develop/os/tutorials/blinky_primo/index.html
index 5b2ee74..d37552f 100644
--- a/develop/os/tutorials/blinky_primo/index.html
+++ b/develop/os/tutorials/blinky_primo/index.html
@@ -501,7 +501,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/develop/os/tutorials/eddystone/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/eddystone/index.html b/develop/os/tutorials/eddystone/index.html
index 63b2dc74..262f649 100644
--- a/develop/os/tutorials/eddystone/index.html
+++ b/develop/os/tutorials/eddystone/index.html
@@ -436,7 +436,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/develop/os/tutorials/event_queue/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/event_queue/index.html b/develop/os/tutorials/event_queue/index.html
index 514c3fd..0f8ae2e 100644
--- a/develop/os/tutorials/event_queue/index.html
+++ b/develop/os/tutorials/event_queue/index.html
@@ -436,7 +436,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/develop/os/tutorials/ibeacon/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/ibeacon/index.html b/develop/os/tutorials/ibeacon/index.html
index f593b2b..9b62294 100644
--- a/develop/os/tutorials/ibeacon/index.html
+++ b/develop/os/tutorials/ibeacon/index.html
@@ -436,7 +436,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/develop/os/tutorials/nRF52/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/nRF52/index.html b/develop/os/tutorials/nRF52/index.html
index 595a972..b4d86ea 100644
--- a/develop/os/tutorials/nRF52/index.html
+++ b/develop/os/tutorials/nRF52/index.html
@@ -501,7 +501,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/develop/os/tutorials/nrf52_adc/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/nrf52_adc/index.html b/develop/os/tutorials/nrf52_adc/index.html
index 9924212..9e88c62 100644
--- a/develop/os/tutorials/nrf52_adc/index.html
+++ b/develop/os/tutorials/nrf52_adc/index.html
@@ -436,7 +436,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/develop/os/tutorials/olimex/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/olimex/index.html b/develop/os/tutorials/olimex/index.html
index ccc522f..9e1e071 100644
--- a/develop/os/tutorials/olimex/index.html
+++ b/develop/os/tutorials/olimex/index.html
@@ -501,7 +501,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/develop/os/tutorials/pin-wheel-mods/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/pin-wheel-mods/index.html b/develop/os/tutorials/pin-wheel-mods/index.html
index 5e3883b..27a3ac2 100644
--- a/develop/os/tutorials/pin-wheel-mods/index.html
+++ b/develop/os/tutorials/pin-wheel-mods/index.html
@@ -515,7 +515,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/develop/os/tutorials/project-nrf52-slinky/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/project-nrf52-slinky/index.html b/develop/os/tutorials/project-nrf52-slinky/index.html
index 70442cc..27c9665 100644
--- a/develop/os/tutorials/project-nrf52-slinky/index.html
+++ b/develop/os/tutorials/project-nrf52-slinky/index.html
@@ -466,7 +466,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/develop/os/tutorials/project-sim-slinky/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/project-sim-slinky/index.html b/develop/os/tutorials/project-sim-slinky/index.html
index fa08269..299a828 100644
--- a/develop/os/tutorials/project-sim-slinky/index.html
+++ b/develop/os/tutorials/project-sim-slinky/index.html
@@ -466,7 +466,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/develop/os/tutorials/project-slinky/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/project-slinky/index.html b/develop/os/tutorials/project-slinky/index.html
index cdb2167..0d18048 100644
--- a/develop/os/tutorials/project-slinky/index.html
+++ b/develop/os/tutorials/project-slinky/index.html
@@ -466,7 +466,7 @@
   
   
     <li><a href="
-  ../../../faq/how_to_edit_docs/
+  ../../../faq/go_env/
 ">Appendix</a>
   
   
@@ -518,7 +518,7 @@
 <li>Have a Micro-USB cable to connect the board and the computer.</li>
 <li>Have a <a href="../../get_started/serial_access/">serial port setup</a>.</li>
 <li>Install the newt tool and the toolchains (See <a href="../../get_started/get_started/">Basic Setup</a>).</li>
-<li>Install the <a href="../../../newtmgr/installing/">newtmgr tool</a>.</li>
+<li>Install the <a href="../../../newtmgr/install_mac/">newtmgr tool</a>.</li>
 <li>Read the Mynewt OS <a href="../../get_started/vocabulary/">Concepts</a> section.</li>
 <li>Create a project space (directory structure) and populated it with the core code repository (apache-mynewt-core) or kn
 ow how to as explained in <a href="../../../os/get_started/project_create">Creating Your First Project</a>.</li>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/develop/os/tutorials/project-stm32-slinky/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/project-stm32-slinky/index.html b/develop/os/tutorials/project-stm32-slinky/index.html
index 707b21c..d2fb5be 100644
--- a/develop/os/tutorials/project-stm32-slinky/index.html
+++ b/develop/os/tutorials/project-stm32-slinky/index.html
@@ -466,7 +466,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/develop/os/tutorials/rbnano2/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/rbnano2/index.html b/develop/os/tutorials/rbnano2/index.html
index c511d1f..b6298bd 100644
--- a/develop/os/tutorials/rbnano2/index.html
+++ b/develop/os/tutorials/rbnano2/index.html
@@ -501,7 +501,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/develop/os/tutorials/repo/add_repos/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/repo/add_repos/index.html b/develop/os/tutorials/repo/add_repos/index.html
index 55ff272..1d6b1bc 100644
--- a/develop/os/tutorials/repo/add_repos/index.html
+++ b/develop/os/tutorials/repo/add_repos/index.html
@@ -466,7 +466,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/develop/os/tutorials/repo/create_repo/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/repo/create_repo/index.html b/develop/os/tutorials/repo/create_repo/index.html
index d7b2774..cd32577 100644
--- a/develop/os/tutorials/repo/create_repo/index.html
+++ b/develop/os/tutorials/repo/create_repo/index.html
@@ -466,7 +466,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/develop/os/tutorials/repo/private_repo/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/repo/private_repo/index.html b/develop/os/tutorials/repo/private_repo/index.html
index dbc726e..73643b2 100644
--- a/develop/os/tutorials/repo/private_repo/index.html
+++ b/develop/os/tutorials/repo/private_repo/index.html
@@ -466,7 +466,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/develop/os/tutorials/repo/upgrade_repo/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/repo/upgrade_repo/index.html b/develop/os/tutorials/repo/upgrade_repo/index.html
index e68578e..de0d89b 100644
--- a/develop/os/tutorials/repo/upgrade_repo/index.html
+++ b/develop/os/tutorials/repo/upgrade_repo/index.html
@@ -466,7 +466,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/develop/os/tutorials/tasks_lesson/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/tasks_lesson/index.html b/develop/os/tutorials/tasks_lesson/index.html
index 2b0dd0c..b212d64 100644
--- a/develop/os/tutorials/tasks_lesson/index.html
+++ b/develop/os/tutorials/tasks_lesson/index.html
@@ -436,7 +436,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/develop/os/tutorials/tutorials/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/tutorials/index.html b/develop/os/tutorials/tutorials/index.html
index ef056df..cf90b0b 100644
--- a/develop/os/tutorials/tutorials/index.html
+++ b/develop/os/tutorials/tutorials/index.html
@@ -436,7 +436,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/develop/os/tutorials/unit_test/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/unit_test/index.html b/develop/os/tutorials/unit_test/index.html
index 691e4a4..75d395b 100644
--- a/develop/os/tutorials/unit_test/index.html
+++ b/develop/os/tutorials/unit_test/index.html
@@ -436,7 +436,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/develop/os/tutorials/wi-fi_on_arduino/index.html
----------------------------------------------------------------------
diff --git a/develop/os/tutorials/wi-fi_on_arduino/index.html b/develop/os/tutorials/wi-fi_on_arduino/index.html
index c4bfb3e..25f25a9 100644
--- a/develop/os/tutorials/wi-fi_on_arduino/index.html
+++ b/develop/os/tutorials/wi-fi_on_arduino/index.html
@@ -436,7 +436,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/develop/search.html
----------------------------------------------------------------------
diff --git a/develop/search.html b/develop/search.html
index 42ce6ec..c116ea5 100644
--- a/develop/search.html
+++ b/develop/search.html
@@ -203,7 +203,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/develop/sitemap.xml
----------------------------------------------------------------------
diff --git a/develop/sitemap.xml b/develop/sitemap.xml
index 69ea288..c977e77 100644
--- a/develop/sitemap.xml
+++ b/develop/sitemap.xml
@@ -4,7 +4,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -13,7 +13,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/pages/ble/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -22,7 +22,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/quick-start/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -30,7 +30,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/about/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -38,7 +38,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/talks/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -46,7 +46,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/download/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -54,7 +54,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/community/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -62,7 +62,7 @@
     
     <url>
      <loc>http://mynewt.apache.org/events/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
     
@@ -71,7 +71,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/introduction/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -83,7 +83,7 @@
         
     <url>
      <loc>http://mynewt.apache.org/os/get_started/vocabulary/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
@@ -122,14 +122,20 @@
     
         
     <url>
+     <loc>http://mynewt.apache.org/faq/go_env/</loc>
+     <lastmod>2017-04-18</lastmod>
+     <changefreq>daily</changefreq>
+    </url>
+        
+    <url>
      <loc>http://mynewt.apache.org/faq/how_to_edit_docs/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         
     <url>
      <loc>http://mynewt.apache.org/faq/answers/</loc>
-     <lastmod>2017-04-07</lastmod>
+     <lastmod>2017-04-18</lastmod>
      <changefreq>daily</changefreq>
     </url>
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/b3522a13/latest/faq/answers/index.html
----------------------------------------------------------------------
diff --git a/latest/faq/answers/index.html b/latest/faq/answers/index.html
index 6de1860..9cb9e41 100644
--- a/latest/faq/answers/index.html
+++ b/latest/faq/answers/index.html
@@ -203,7 +203,7 @@
   
   
     <li><a href="
-  ../how_to_edit_docs/
+  ../go_env/
 ">Appendix</a>
   
   
@@ -212,6 +212,14 @@
               
                 
     <li >
+      <a href="../go_env/">Setting Up Go to Contribute to Newt and Newtmgr Tools</a>
+    </li>
+
+              
+          
+              
+                
+    <li >
       <a href="../how_to_edit_docs/">Edit Docs</a>
     </li>
 
@@ -242,7 +250,7 @@
     
     
         
-          <li>&raquo; <a href="../how_to_edit_docs/">Appendix</a></li>
+          <li>&raquo; <a href="../go_env/">Appendix</a></li>