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 2016/11/29 02:25:38 UTC

[4/5] incubator-mynewt-site git commit: Made develop branch the default doc version from links on landing page, updated create your first project

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/latest/mkdocs/search_index.json
----------------------------------------------------------------------
diff --git a/latest/mkdocs/search_index.json b/latest/mkdocs/search_index.json
index a53ca84..ea82980 100644
--- a/latest/mkdocs/search_index.json
+++ b/latest/mkdocs/search_index.json
@@ -362,7 +362,7 @@
         }, 
         {
             "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\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: 0-latest\n    user: apache\n    repo: incubator-mynewt-core\n\n\n\n\n\nChanging to 0-dev will put you on the develop branch. \nThe Develop Branch may not be stable and \nyou 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 view them by issuing the following commands in the ba
 se directory of the new project:\n\n\n$ tree -L 2 repos/apache-mynewt-core/\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 bletest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bletiny\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleuart\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blinky\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ffs2native\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 luatest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 slinky\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 test\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 \u2514\u2500\u2500 sim\n\u251c\u2500\u2500 drivers\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 uart_bitbang\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 bleuart\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot_serial\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bootutil\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cmsis-core\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 console\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 crash_test\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 inet_def_service\n\u2502\u00a0\u00a0 \u251c\u
 2500\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 \u251c\u2500\u2500 tinycrypt\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 util\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 wifi_mgmt\n\u251c\u2500\u2500 net\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 nimble\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 coredump\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fcb\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 id\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 log\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mn_socket\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 reboot\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 stats\n\u2514\u2500\u2500 targets\n    \u25
 14\u2500\u2500 unittest\n\n61 directories, 8 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 \nlibs/os\n package 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\nNOTE:\n If you've installed the latest gcc using homebrew on your Mac, you should downgrade to gcc-5 in order to use MyNewt.\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\n...lots of compiling and testing...\n...about 2 minutes later ..
 .\nCompiling mn_sock_test.c\nArchiving mn_socket.a\nLinking test_mn_socket\nExecuting test: /Users/dsimmons/myproj/bin/unittest/sys/mn_socket/test_mn_socket\nPassed tests: [libs/json libs/util libs/mbedtls net/nimble/host hw/hal libs/bootutil sys/log sys/config sys/fcb fs/nffs libs/os libs/boot_serial sys/mn_socket]\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 main.c\nArchiving blinky.a\nCompiling hal_bsp.c\nCompiling os_bsp.c\nCompiling sbrk.c\nArchiving native.a\nCompiling flash_map.c\n\nsnip\n\nLinking blinky.elf\nApp successfully built: /Users/dsimmons/myproj/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$ ./bin/my_blinky_sim/apps/blinky/blinky.elf\nhal_gpio set pin  1 to 0\n\n\n\n\n\n\n\nComple
 te\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!", 
+            "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: 0-latest\n    user: apache\n    repo: incubator-mynewt-core\n\n\n\n\n\nChanging to 0-dev will put you on the develop branch. \nThe Develop Branch may not be stable and \nyou 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
  view 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/\nrepos/apache-mynewt-core/\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 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 ffs2native\n\u2502\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 \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 \u2514\u2500\u2500 split\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 \u2514\u2500\u2500 sim\n\u251c\u2500\u2500 crypto\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mbedtls\n\u2502\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\u00a
 0 \u251c\u2500\u2500 json\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 tinycbor\n\u251c\u2500\u2500 fs\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\u2500\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\u2500\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 \u251c\u2500\u2500 
 testreport\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\n87 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 \nlibs/os\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\nsnip\n\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 a
 djusted 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\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\n...lots of compiling and testing...\n...about 2 minutes later ...\nCompiling mn_sock_test.c\nArchiving mn_socket.a\nLinking test_mn_socket\nExecuting test: /Users/dsimmons/myproj/bin/unittest/sys/mn_socket/test_mn_socket\nPassed tests: [libs/json libs/util libs/mbedtls net/nimble/host hw/hal libs/bootutil sys/log sys/config sys/fcb fs/nffs libs/os libs/boot_serial sys/mn_socket]\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 main.c\nArchiving blinky.a\nCompili
 ng hal_bsp.c\nCompiling os_bsp.c\nCompiling sbrk.c\nArchiving native.a\nCompiling flash_map.c\n\nsnip\n\nLinking blinky.elf\nApp successfully built: /Users/dsimmons/myproj/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$ ./bin/my_blinky_sim/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\nHap
 py Hacking!", 
             "title": "Create Your First Project"
         }, 
         {
@@ -377,17 +377,17 @@
         }, 
         {
             "location": "/os/get_started/project_create/#newt-new", 
-            "text": "Choose a project name. For this tutorial we will call this project  myproj .\nEnter the  newt new myproj  command.   $ newt new myproj\nDownloading project skeleton from apache/incubator-mynewt-blinky...\nInstalling skeleton in myproj...\nProject myproj successfully created.   Newt populates this new project with a base skeleton of a new Apache Mynewt \nproject.  It has the following structure.   Note : If you do not have  tree , install it by running  brew install tree .  $ 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\u25
 00 target.yml\n    \u2514\u2500\u2500 unittest\n        \u251c\u2500\u2500 pkg.yml\n        \u2514\u2500\u2500 target.yml\n\n6 directories, 10 files   The Newt tool has installed the base files for a project comprising the following:   The file  project.yml  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.  The file  apps/blinky/pkg.yml  contains the description of your application\nand its package dependencies.  A  target  directory containing  my_blinky_sim , a target descriptor used to\nbuild a version of myproj.  Use  newt target show  to see available build \ntargets.  A non-buildable target called  unittest .  This is used internally by  newt  and is not a formal build target.   NOTE:  the actual code and package files are not installed \n(except the template for
   main.c ).  See the next step for installing the packages.  NOTE:  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.   repository.apache-mynewt-core:\n    type: github\n    vers: 0-latest\n    user: apache\n    repo: incubator-mynewt-core  Changing to 0-dev will put you on the develop branch.  The Develop Branch may not be stable and \nyou may encounter bugs or other problems.", 
+            "text": "Choose a project name. For this tutorial we will call this project  myproj .\nEnter the  newt new myproj  command.   $ newt new myproj\nDownloading project skeleton from apache/incubator-mynewt-blinky...\nInstalling skeleton in myproj...\nProject myproj successfully created.   Newt populates this new project with a base skeleton of a new Apache Mynewt \nproject.  It has the following structure.   Note : If you do not have  tree , install it by running  brew install tree .  $ 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   The Newt tool has installed the base files for a project comprising the following:   The file  project.yml  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.  The file  apps/blinky/pkg.yml  contains the description of your application\nand its package dependencies.  A  target  directory containing  my_blinky_sim , a target descriptor used to\nbuild a version of myproj.  Use  newt target show  to see available build \ntargets.  A non-buildable target called  unittest .  This is used internally by  newt  and is not a formal build target.   NOTE:  The actual code and pack
 age files are not installed \n(except the template for  main.c ).  See the next step for installing the packages.  NOTE:  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.   repository.apache-mynewt-core:\n    type: github\n    vers: 0-latest\n    user: apache\n    repo: incubator-mynewt-core  Changing to 0-dev will put you on the develop branch.  The Develop Branch may not be stable and \nyou may encounter bugs or other problems.", 
             "title": "Newt New"
         }, 
         {
             "location": "/os/get_started/project_create/#newt-install", 
-            "text": "Once 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  newt install  command will\nfetch this repository.  $ newt install\napache-mynewt-core  NOTE:   apache-mynewt-core  may take a while to download.  To see progress,\nuse the  -v  (verbose) option to install.    Once  newt install  has successfully finished, the contents of  apache-mynewt-core  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:  $ tree -L 2 repos/apache-mynewt-core/\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 bletest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bletiny\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bleuart\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 blinky\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ffs2native\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 luatest\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 slinky\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 test\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 \u2514\u2500\u2500 sim\n\u251c\u2500\u2500 drivers\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 uart_bitbang\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 bleuart\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 boot_serial\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 bootutil\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 cmsis-core\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 console\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 crash_test\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 inet_def_service\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 \u251c\u2500\u2500 tinycrypt\n\u2502\u00a0\u
 00a0 \u251c\u2500\u2500 util\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 wifi_mgmt\n\u251c\u2500\u2500 net\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 nimble\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 coredump\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 fcb\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 id\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 log\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mn_socket\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 reboot\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 stats\n\u2514\u2500\u2500 targets\n    \u2514\u2500\u2500 unittest\n\n61 directories, 8 files  As you can see, the core of the Apache Mynewt operating system has been brought \ninto your local directory.", 
+            "text": "Once 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  newt install  command will\nfetch this repository.  $ newt install\napache-mynewt-core  NOTE:   apache-mynewt-core  may take a while to download.  To see progress,\nuse the  -v  (verbose) option to install.    Once  newt install  has successfully finished, the contents of  apache-mynewt-core  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. The actual output will depend on what is in the latest 'master' branch you have pulled from.  $ tree -L 2 repos/apache-mynewt-core/\nrepos/apache-mynewt-core/\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\u2
 500\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 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 ffs2native\n\u2502\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 \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 \u2514\u2500\u
 2500 split\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 \u2514\u2500\u2500 sim\n\u251c\u2500\u2500 crypto\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mbedtls\n\u2502\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 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 \u25
 1c\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\u2500\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\u2500\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 \u251c\u2500\u2500 testreport\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\n87 directories, 9 files  As you can see, the core of the Apache Mynewt operating system has been brought \ninto your local directory.", 
             "title": "Newt Install"
         }, 
         {
             "location": "/os/get_started/project_create/#test-the-projects-packages", 
-            "text": "You have already built your first basic project. You can ask Newt to execute the unit tests in a package. For example, to test the  libs/os  package in the  apache-mynewt-core  repo, call newt as shown below.  $ 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 snip   NOTE:  If you've installed the latest gcc using homebrew on your Mac, you should downgrade to gcc-5 in order to use MyNewt.  $ brew uninstall gcc-6\n$ brew link gcc-5   To test all the packages in a project, specify  all  instead of the package name.  $ newt test all\n...lots of compiling and testing...\n...about 2 minutes later ...\nCompiling mn_sock_test.c\nArchiving mn_socket.a\nLinking test_mn_socket\nExecuting test: /Users/dsimmons/myproj/bin/unittest/sys/mn_socket/test_mn_socket\nPassed tests: [libs/json libs/util libs/mbedtls net/nimble/host hw/hal libs/bootu
 til sys/log sys/config sys/fcb fs/nffs libs/os libs/boot_serial sys/mn_socket]\nAll tests passed", 
+            "text": "You have already built your first basic project. You can ask Newt to execute the unit tests in a package. For example, to test the  libs/os  package in the  apache-mynewt-core  repo, call newt as shown below.  $ 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 snip   NOTE:  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  Native Install Option . You can choose to downgrade to gcc-5 in order to use the default gcc compiler configuration for MyNewt.  $ brew uninstall gcc-6\n$ brew link gcc-5   To test all the packages in a project, specify  all  instead of the package name.  $ newt test all\n...lots of compiling and testing...\n...about 2 minutes later ...\nCompiling mn_sock_test.c\nA
 rchiving mn_socket.a\nLinking test_mn_socket\nExecuting test: /Users/dsimmons/myproj/bin/unittest/sys/mn_socket/test_mn_socket\nPassed tests: [libs/json libs/util libs/mbedtls net/nimble/host hw/hal libs/bootutil sys/log sys/config sys/fcb fs/nffs libs/os libs/boot_serial sys/mn_socket]\nAll tests passed", 
             "title": "Test the project's packages"
         }, 
         {

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/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 d49125a..ac5ce1f 100644
--- a/latest/os/get_started/project_create/index.html
+++ b/latest/os/get_started/project_create/index.html
@@ -395,6 +395,7 @@ $ tree
 \u2502�� \u2514\u2500\u2500 blinky
 \u2502��     \u251c\u2500\u2500 pkg.yml
 \u2502��     \u2514\u2500\u2500 src
+\u2502��         \u2514\u2500\u2500 main.c
 \u251c\u2500\u2500 project.yml
 \u2514\u2500\u2500 targets
     \u251c\u2500\u2500 my_blinky_sim
@@ -404,7 +405,7 @@ $ tree
         \u251c\u2500\u2500 pkg.yml
         \u2514\u2500\u2500 target.yml
 
-6 directories, 10 files
+6 directories, 11 files
 </pre></div>
 
 
@@ -422,7 +423,7 @@ build a version of myproj.  Use <code>newt target show</code> to see available b
 targets.</li>
 <li>A non-buildable target called <code>unittest</code>.  This is used internally by <code>newt</code> and is not a formal build target.</li>
 </ol>
-<p><strong>NOTE:</strong> the actual code and package files are not installed 
+<p><strong>NOTE:</strong> The actual code and package files are not installed 
 (except the template for <code>main.c</code>).  See the next step for installing the packages.</p>
 <p><strong>NOTE:</strong> By default newt uses the code in the master branch. This is the latest stable
 code for newt. If you need to use a different branch, you can set this in the project.yml
@@ -451,9 +452,10 @@ apache-mynewt-core
 <p><strong>NOTE:</strong> <em>apache-mynewt-core</em> may take a while to download.  To see progress,
 use the <em>-v</em> (verbose) option to install. </p>
 <p><br></p>
-<p>Once <em>newt install</em> has successfully finished, the contents of <em>apache-mynewt-core</em> 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:</p>
+<p>Once <em>newt install</em> has successfully finished, the contents of <em>apache-mynewt-core</em> 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. The actual output will depend on what is in the latest 'master' branch you have pulled from.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ tree -L 2 repos/apache-mynewt-core/
 repos/apache-mynewt-core/
+repos/apache-mynewt-core/
 \u251c\u2500\u2500 CODING_STANDARDS.md
 \u251c\u2500\u2500 DISCLAIMER
 \u251c\u2500\u2500 LICENSE
@@ -464,67 +466,94 @@ repos/apache-mynewt-core/
 \u2502�� \u251c\u2500\u2500 blecent
 \u2502�� \u251c\u2500\u2500 blehci
 \u2502�� \u251c\u2500\u2500 bleprph
+\u2502�� \u251c\u2500\u2500 bleprph_oic
 \u2502�� \u251c\u2500\u2500 bletest
 \u2502�� \u251c\u2500\u2500 bletiny
 \u2502�� \u251c\u2500\u2500 bleuart
-\u2502�� \u251c\u2500\u2500 blinky
 \u2502�� \u251c\u2500\u2500 boot
 \u2502�� \u251c\u2500\u2500 ffs2native
-\u2502�� \u251c\u2500\u2500 luatest
+\u2502�� \u251c\u2500\u2500 ocf_sample
 \u2502�� \u251c\u2500\u2500 slinky
-\u2502�� \u2514\u2500\u2500 test
+\u2502�� \u251c\u2500\u2500 slinky_oic
+\u2502�� \u251c\u2500\u2500 spitest
+\u2502�� \u251c\u2500\u2500 splitty
+\u2502�� \u251c\u2500\u2500 test
+\u2502�� \u2514\u2500\u2500 timtest
+\u251c\u2500\u2500 boot
+\u2502�� \u251c\u2500\u2500 boot_serial
+\u2502�� \u251c\u2500\u2500 bootutil
+\u2502�� \u2514\u2500\u2500 split
 \u251c\u2500\u2500 compiler
 \u2502�� \u251c\u2500\u2500 arm-none-eabi-m0
 \u2502�� \u251c\u2500\u2500 arm-none-eabi-m4
+\u2502�� \u251c\u2500\u2500 gdbmacros
 \u2502�� \u2514\u2500\u2500 sim
-\u251c\u2500\u2500 drivers
-\u2502�� \u2514\u2500\u2500 uart_bitbang
+\u251c\u2500\u2500 crypto
+\u2502�� \u251c\u2500\u2500 mbedtls
+\u2502�� \u2514\u2500\u2500 tinycrypt
+\u251c\u2500\u2500 docs
+\u2502�� \u2514\u2500\u2500 doxygen.xml
+\u251c\u2500\u2500 encoding
+\u2502�� \u251c\u2500\u2500 base64
+\u2502�� \u251c\u2500\u2500 cborattr
+\u2502�� \u251c\u2500\u2500 json
+\u2502�� \u2514\u2500\u2500 tinycbor
 \u251c\u2500\u2500 fs
+\u2502�� \u251c\u2500\u2500 fcb
 \u2502�� \u251c\u2500\u2500 fs
 \u2502�� \u2514\u2500\u2500 nffs
 \u251c\u2500\u2500 hw
 \u2502�� \u251c\u2500\u2500 bsp
-\u2502�� \u251c\u2500\u2500 hal
-\u2502�� \u2514\u2500\u2500 mcu
-\u251c\u2500\u2500 libs
-\u2502�� \u251c\u2500\u2500 baselibc
-\u2502�� \u251c\u2500\u2500 bleuart
-\u2502�� \u251c\u2500\u2500 boot_serial
-\u2502�� \u251c\u2500\u2500 bootutil
 \u2502�� \u251c\u2500\u2500 cmsis-core
-\u2502�� \u251c\u2500\u2500 console
-\u2502�� \u251c\u2500\u2500 crash_test
-\u2502�� \u251c\u2500\u2500 elua
-\u2502�� \u251c\u2500\u2500 flash_test
+\u2502�� \u251c\u2500\u2500 drivers
+\u2502�� \u251c\u2500\u2500 hal
+\u2502�� \u251c\u2500\u2500 mcu
+\u2502�� \u2514\u2500\u2500 scripts
+\u251c\u2500\u2500 kernel
+\u2502�� \u2514\u2500\u2500 os
+\u251c\u2500\u2500 libc
+\u2502�� \u2514\u2500\u2500 baselibc
+\u251c\u2500\u2500 mgmt
 \u2502�� \u251c\u2500\u2500 imgmgr
-\u2502�� \u251c\u2500\u2500 inet_def_service
-\u2502�� \u251c\u2500\u2500 json
-\u2502�� \u251c\u2500\u2500 mbedtls
+\u2502�� \u251c\u2500\u2500 mgmt
 \u2502�� \u251c\u2500\u2500 newtmgr
-\u2502�� \u251c\u2500\u2500 os
-\u2502�� \u251c\u2500\u2500 shell
-\u2502�� \u251c\u2500\u2500 testreport
-\u2502�� \u251c\u2500\u2500 testutil
-\u2502�� \u251c\u2500\u2500 tinycrypt
-\u2502�� \u251c\u2500\u2500 util
-\u2502�� \u2514\u2500\u2500 wifi_mgmt
+\u2502�� \u2514\u2500\u2500 oicmgr
 \u251c\u2500\u2500 net
-\u2502�� \u2514\u2500\u2500 nimble
+\u2502�� \u251c\u2500\u2500 ip
+\u2502�� \u251c\u2500\u2500 nimble
+\u2502�� \u251c\u2500\u2500 oic
+\u2502�� \u2514\u2500\u2500 wifi
 \u251c\u2500\u2500 project.yml
 \u251c\u2500\u2500 repository.yml
 \u251c\u2500\u2500 sys
 \u2502�� \u251c\u2500\u2500 config
+\u2502�� \u251c\u2500\u2500 console
 \u2502�� \u251c\u2500\u2500 coredump
-\u2502�� \u251c\u2500\u2500 fcb
+\u2502�� \u251c\u2500\u2500 defs
+\u2502�� \u251c\u2500\u2500 flash_map
 \u2502�� \u251c\u2500\u2500 id
 \u2502�� \u251c\u2500\u2500 log
-\u2502�� \u251c\u2500\u2500 mn_socket
+\u2502�� \u251c\u2500\u2500 mfg
 \u2502�� \u251c\u2500\u2500 reboot
-\u2502�� \u2514\u2500\u2500 stats
-\u2514\u2500\u2500 targets
-    \u2514\u2500\u2500 unittest
-
-61 directories, 8 files
+\u2502�� \u251c\u2500\u2500 shell
+\u2502�� \u251c\u2500\u2500 stats
+\u2502�� \u2514\u2500\u2500 sysinit
+\u251c\u2500\u2500 targets
+\u2502�� \u2514\u2500\u2500 unittest
+\u251c\u2500\u2500 test
+\u2502�� \u251c\u2500\u2500 crash_test
+\u2502�� \u251c\u2500\u2500 flash_test
+\u2502�� \u251c\u2500\u2500 runtest
+\u2502�� \u251c\u2500\u2500 testreport
+\u2502�� \u2514\u2500\u2500 testutil
+\u251c\u2500\u2500 time
+\u2502�� \u2514\u2500\u2500 datetime
+\u2514\u2500\u2500 util
+    \u251c\u2500\u2500 cbmem
+    \u251c\u2500\u2500 crc
+    \u2514\u2500\u2500 mem
+
+87 directories, 9 files
 </pre></div>
 
 
@@ -533,18 +562,17 @@ into your local directory. </p>
 <p><br></p>
 <h3 id="test-the-projects-packages">Test the project's packages</h3>
 <p>You have already built your first basic project. You can ask Newt to execute the unit tests in a package. For example, to test the <code>libs/os</code> package in the <code>apache-mynewt-core</code> repo, call newt as shown below.</p>
-<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt test @apache-mynewt-core/libs/os
-Testing package @apache-mynewt-core/libs/os
-Compiling hal_bsp.c
-Compiling os_bsp.c
-Compiling sbrk.c
-Archiving native.a
-Compiling flash_map.c
+<div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ newt test @apache-mynewt-core/sys/config
+Testing package @apache-mynewt-core/sys/config/test-fcb
+Compiling bootutil_misc.c
+Compiling image_ec.c
+Compiling image_rsa.c
+Compiling image_validate.c
 &lt;snip&gt;
 </pre></div>
 
 
-<p><strong>NOTE:</strong> If you've installed the latest gcc using homebrew on your Mac, you should downgrade to gcc-5 in order to use MyNewt.</p>
+<p><strong>NOTE:</strong> 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 <a href="../native_tools/">Native Install Option</a>. You can choose to downgrade to gcc-5 in order to use the default gcc compiler configuration for MyNewt.</p>
 <div class="codehilite" style="background: #ffffff"><pre style="line-height: 125%">$ brew uninstall gcc-6
 $ brew link gcc-5
 </pre></div>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ble_intro/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ble_intro/index.html b/network/ble/ble_intro/index.html
index 6b84e1a..0e23830 100644
--- a/network/ble/ble_intro/index.html
+++ b/network/ble/ble_intro/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -344,7 +344,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ble_sec/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ble_sec/index.html b/network/ble/ble_sec/index.html
index d7eeda9..1f907e5 100644
--- a/network/ble/ble_sec/index.html
+++ b/network/ble/ble_sec/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -344,7 +344,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/bletiny/bletiny_GAP/index.html
----------------------------------------------------------------------
diff --git a/network/ble/bletiny/bletiny_GAP/index.html b/network/ble/bletiny/bletiny_GAP/index.html
index 5be5989..1a63733 100644
--- a/network/ble/bletiny/bletiny_GAP/index.html
+++ b/network/ble/bletiny/bletiny_GAP/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -374,7 +374,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/bletiny/bletiny_GATT/index.html
----------------------------------------------------------------------
diff --git a/network/ble/bletiny/bletiny_GATT/index.html b/network/ble/bletiny/bletiny_GATT/index.html
index 73842b9..92fd63b 100644
--- a/network/ble/bletiny/bletiny_GATT/index.html
+++ b/network/ble/bletiny/bletiny_GATT/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -374,7 +374,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/bletiny/bletiny_advdata/index.html
----------------------------------------------------------------------
diff --git a/network/ble/bletiny/bletiny_advdata/index.html b/network/ble/bletiny/bletiny_advdata/index.html
index 0d4a585..5e1d954 100644
--- a/network/ble/bletiny/bletiny_advdata/index.html
+++ b/network/ble/bletiny/bletiny_advdata/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -374,7 +374,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/bletiny_api/index.html
----------------------------------------------------------------------
diff --git a/network/ble/bletiny_api/index.html b/network/ble/bletiny_api/index.html
index dfb1cc9..140734c 100644
--- a/network/ble/bletiny_api/index.html
+++ b/network/ble/bletiny_api/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -374,7 +374,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ini_stack/ble_add_cpu/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ini_stack/ble_add_cpu/index.html b/network/ble/ini_stack/ble_add_cpu/index.html
index 2436e35..acd7cb4 100644
--- a/network/ble/ini_stack/ble_add_cpu/index.html
+++ b/network/ble/ini_stack/ble_add_cpu/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -414,7 +414,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ini_stack/ble_consolepkg/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ini_stack/ble_consolepkg/index.html b/network/ble/ini_stack/ble_consolepkg/index.html
index 9e37ee0..b47a181 100644
--- a/network/ble/ini_stack/ble_consolepkg/index.html
+++ b/network/ble/ini_stack/ble_consolepkg/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -414,7 +414,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ini_stack/ble_controller_ini/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ini_stack/ble_controller_ini/index.html b/network/ble/ini_stack/ble_controller_ini/index.html
index d038193..346d629 100644
--- a/network/ble/ini_stack/ble_controller_ini/index.html
+++ b/network/ble/ini_stack/ble_controller_ini/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -414,7 +414,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ini_stack/ble_devadd/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ini_stack/ble_devadd/index.html b/network/ble/ini_stack/ble_devadd/index.html
index d990181..76e00d1 100644
--- a/network/ble/ini_stack/ble_devadd/index.html
+++ b/network/ble/ini_stack/ble_devadd/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -414,7 +414,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ini_stack/ble_host_ini/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ini_stack/ble_host_ini/index.html b/network/ble/ini_stack/ble_host_ini/index.html
index c6976ea..b63772b 100644
--- a/network/ble/ini_stack/ble_host_ini/index.html
+++ b/network/ble/ini_stack/ble_host_ini/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -414,7 +414,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ini_stack/ble_ini_intro/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ini_stack/ble_ini_intro/index.html b/network/ble/ini_stack/ble_ini_intro/index.html
index cfb0843..760bace 100644
--- a/network/ble/ini_stack/ble_ini_intro/index.html
+++ b/network/ble/ini_stack/ble_ini_intro/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -414,7 +414,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ini_stack/ble_mempool/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ini_stack/ble_mempool/index.html b/network/ble/ini_stack/ble_mempool/index.html
index 4e249dd..ebdcb00 100644
--- a/network/ble/ini_stack/ble_mempool/index.html
+++ b/network/ble/ini_stack/ble_mempool/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -414,7 +414,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ini_stack/ble_parent_ini/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ini_stack/ble_parent_ini/index.html b/network/ble/ini_stack/ble_parent_ini/index.html
index fb5dcdf..03998d7 100644
--- a/network/ble/ini_stack/ble_parent_ini/index.html
+++ b/network/ble/ini_stack/ble_parent_ini/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -414,7 +414,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/ini_stack/ble_statpkg/index.html
----------------------------------------------------------------------
diff --git a/network/ble/ini_stack/ble_statpkg/index.html b/network/ble/ini_stack/ble_statpkg/index.html
index ba1410a..cc0b9b1 100644
--- a/network/ble/ini_stack/ble_statpkg/index.html
+++ b/network/ble/ini_stack/ble_statpkg/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -414,7 +414,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/network/ble/nimble_setup/index.html
----------------------------------------------------------------------
diff --git a/network/ble/nimble_setup/index.html b/network/ble/nimble_setup/index.html
index 733e5b2..90b1072 100644
--- a/network/ble/nimble_setup/index.html
+++ b/network/ble/nimble_setup/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -344,7 +344,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_build/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_build/index.html b/newt/command_list/newt_build/index.html
index 9b9da6b..6fb2658 100644
--- a/newt/command_list/newt_build/index.html
+++ b/newt/command_list/newt_build/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_clean/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_clean/index.html b/newt/command_list/newt_clean/index.html
index afae88e..8ef673c 100644
--- a/newt/command_list/newt_clean/index.html
+++ b/newt/command_list/newt_clean/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_create_image/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_create_image/index.html b/newt/command_list/newt_create_image/index.html
index bbcab86..fd26d99 100644
--- a/newt/command_list/newt_create_image/index.html
+++ b/newt/command_list/newt_create_image/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_debug/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_debug/index.html b/newt/command_list/newt_debug/index.html
index b80ede7..dd3077f 100644
--- a/newt/command_list/newt_debug/index.html
+++ b/newt/command_list/newt_debug/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_help/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_help/index.html b/newt/command_list/newt_help/index.html
index 6030f6f..571a5f0 100644
--- a/newt/command_list/newt_help/index.html
+++ b/newt/command_list/newt_help/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_info/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_info/index.html b/newt/command_list/newt_info/index.html
index 191652d..2d965e4 100644
--- a/newt/command_list/newt_info/index.html
+++ b/newt/command_list/newt_info/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_install/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_install/index.html b/newt/command_list/newt_install/index.html
index ba71d63..da6eb7c 100644
--- a/newt/command_list/newt_install/index.html
+++ b/newt/command_list/newt_install/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_load/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_load/index.html b/newt/command_list/newt_load/index.html
index 52e2b46..5e1b525 100644
--- a/newt/command_list/newt_load/index.html
+++ b/newt/command_list/newt_load/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_new/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_new/index.html b/newt/command_list/newt_new/index.html
index c721586..550bbfa 100644
--- a/newt/command_list/newt_new/index.html
+++ b/newt/command_list/newt_new/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_run/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_run/index.html b/newt/command_list/newt_run/index.html
index 31d8c40..33fdbd0 100644
--- a/newt/command_list/newt_run/index.html
+++ b/newt/command_list/newt_run/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_size/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_size/index.html b/newt/command_list/newt_size/index.html
index a911cd9..9d40c14 100644
--- a/newt/command_list/newt_size/index.html
+++ b/newt/command_list/newt_size/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_target/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_target/index.html b/newt/command_list/newt_target/index.html
index ed994c7..ed1be35 100644
--- a/newt/command_list/newt_target/index.html
+++ b/newt/command_list/newt_target/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_test/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_test/index.html b/newt/command_list/newt_test/index.html
index a4c030f..ed96714 100644
--- a/newt/command_list/newt_test/index.html
+++ b/newt/command_list/newt_test/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_upgrade/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_upgrade/index.html b/newt/command_list/newt_upgrade/index.html
index a3945d5..3851761 100644
--- a/newt/command_list/newt_upgrade/index.html
+++ b/newt/command_list/newt_upgrade/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/command_list/newt_version/index.html
----------------------------------------------------------------------
diff --git a/newt/command_list/newt_version/index.html b/newt/command_list/newt_version/index.html
index 2361d41..e6b1731 100644
--- a/newt/command_list/newt_version/index.html
+++ b/newt/command_list/newt_version/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/install/newt_linux/index.html
----------------------------------------------------------------------
diff --git a/newt/install/newt_linux/index.html b/newt/install/newt_linux/index.html
index bd39998..02f52fb 100644
--- a/newt/install/newt_linux/index.html
+++ b/newt/install/newt_linux/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -357,7 +357,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/install/newt_mac/index.html
----------------------------------------------------------------------
diff --git a/newt/install/newt_mac/index.html b/newt/install/newt_mac/index.html
index f289998..0193dea 100644
--- a/newt/install/newt_mac/index.html
+++ b/newt/install/newt_mac/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -357,7 +357,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/newt_intro/index.html
----------------------------------------------------------------------
diff --git a/newt/newt_intro/index.html b/newt/newt_intro/index.html
index 0a12062..db63d86 100644
--- a/newt/newt_intro/index.html
+++ b/newt/newt_intro/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -319,7 +319,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/newt_operation/index.html
----------------------------------------------------------------------
diff --git a/newt/newt_operation/index.html b/newt/newt_operation/index.html
index fa92176..c7894e8 100644
--- a/newt/newt_operation/index.html
+++ b/newt/newt_operation/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -319,7 +319,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newt/newt_ops/index.html
----------------------------------------------------------------------
diff --git a/newt/newt_ops/index.html b/newt/newt_ops/index.html
index 4a54f18..6c2889a 100644
--- a/newt/newt_ops/index.html
+++ b/newt/newt_ops/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -445,7 +445,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newtmgr/installing/index.html
----------------------------------------------------------------------
diff --git a/newtmgr/installing/index.html b/newtmgr/installing/index.html
index 63be2df..3476b9f 100644
--- a/newtmgr/installing/index.html
+++ b/newtmgr/installing/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -308,7 +308,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/newtmgr/overview/index.html
----------------------------------------------------------------------
diff --git a/newtmgr/overview/index.html b/newtmgr/overview/index.html
index ddb8c98..7161bdc 100644
--- a/newtmgr/overview/index.html
+++ b/newtmgr/overview/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -308,7 +308,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/os/core_os/callout/callout/index.html
----------------------------------------------------------------------
diff --git a/os/core_os/callout/callout/index.html b/os/core_os/callout/callout/index.html
index 3716153..07773af 100644
--- a/os/core_os/callout/callout/index.html
+++ b/os/core_os/callout/callout/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -620,7 +620,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/os/core_os/callout/os_callout_func_init/index.html
----------------------------------------------------------------------
diff --git a/os/core_os/callout/os_callout_func_init/index.html b/os/core_os/callout/os_callout_func_init/index.html
index b9eb4be..2c7b980 100644
--- a/os/core_os/callout/os_callout_func_init/index.html
+++ b/os/core_os/callout/os_callout_func_init/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -664,7 +664,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/os/core_os/callout/os_callout_init/index.html
----------------------------------------------------------------------
diff --git a/os/core_os/callout/os_callout_init/index.html b/os/core_os/callout/os_callout_init/index.html
index 1785d91..d89c14c 100644
--- a/os/core_os/callout/os_callout_init/index.html
+++ b/os/core_os/callout/os_callout_init/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -664,7 +664,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>
     
     
         

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/d5cf82bc/os/core_os/callout/os_callout_queued/index.html
----------------------------------------------------------------------
diff --git a/os/core_os/callout/os_callout_queued/index.html b/os/core_os/callout/os_callout_queued/index.html
index 37b4574..0c9f6f2 100644
--- a/os/core_os/callout/os_callout_queued/index.html
+++ b/os/core_os/callout/os_callout_queued/index.html
@@ -150,14 +150,14 @@
     
     <option
       value="/develop/os/introduction"
-      
+      selected="selected"
     >
       Version: develop (latest)
     </option>
     
     <option
       value="/v0_9_0/os/introduction"
-      selected="selected"
+      
     >
       Version: 0.9.0
     </option>
@@ -664,7 +664,7 @@
                         <div class="doc-header">
                             <div role="navigation" aria-label="breadcrumbs navigation">
   <ul class="wy-breadcrumbs pull-right">
-    <li><a href="/v0_9_0/os/introduction">Docs</a></li>
+    <li><a href="/develop/os/introduction">Docs</a></li>