download.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!--#include file="header.html" -->
  2. <div class="row">
  3. <div class="col-sm-10 col-sm-offset-1">
  4. <h2>Download</h2>
  5. <p>
  6. The latest stable release is <b>2015.08</b>, which can be downloaded
  7. here:<p>
  8. <a href="/downloads/buildroot-2015.08.tar.gz">buildroot-2015.08.tar.gz</a>
  9. (<a href="/downloads/buildroot-2015.08.tar.gz.sign">PGP signature</a>)
  10. or
  11. <a href="/downloads/buildroot-2015.08.tar.bz2">buildroot-2015.08.tar.bz2</a>
  12. (<a href="/downloads/buildroot-2015.08.tar.bz2.sign">PGP signature</a>).
  13. <!--
  14. <p>
  15. The latest release candidate is <b>2015.08-rc2</b>, which can be
  16. downloaded here:<p>
  17. <a href="/downloads/buildroot-2015.08-rc2.tar.gz">buildroot-2015.08-rc1.tar.gz</a>
  18. (<a href="/downloads/buildroot-2015.08-rc2.tar.gz.sign">PGP signature</a>)
  19. or
  20. <a href="/downloads/buildroot-2015.08-rc2.tar.bz2">buildroot-2015.08-rc1.tar.bz2</a>
  21. (<a href="/downloads/buildroot-2015.08-rc2.tar.bz2.sign">PGP signature</a>).
  22. <p>
  23. -->
  24. This and earlier releases (and their PGP signatures) can always be downloaded from
  25. <a href="/downloads/">http://buildroot.net/downloads/</a>.
  26. <p>
  27. You can also obtain daily snapshots of the latest Buildroot source tree if you
  28. want to follow development, but cannot or do not wish to use Git.
  29. <ul>
  30. <li>You can download the
  31. <a href="downloads/snapshots/buildroot-snapshot.tar.bz2">latest snapshot
  32. </a> or view recent <a href="downloads/snapshots/">daily snapshots</a>.
  33. </li>
  34. <li>You can also <a href="http://git.buildroot.net/buildroot">browse the
  35. source tree online</a>.
  36. </li>
  37. </ul>
  38. <p>
  39. Older versions can be downloaded from <a href="/downloads/">the release archive</a>.
  40. </p>
  41. <h2>Repository</h2>
  42. The buildroot repository can be browsed online through cgit at
  43. <a href="http://git.buildroot.net/buildroot/">http://git.buildroot.net/buildroot</a>.
  44. To grab a copy of the repository use
  45. <pre>
  46. git clone git://git.buildroot.net/buildroot</pre>
  47. Or if you're behind a firewall blocking git:
  48. <pre>
  49. git clone http://git.buildroot.net/git/buildroot.git</pre>
  50. <p>
  51. Please use the native git protocol if at all possible, as it's a lot
  52. more efficient than HTTP.
  53. <p>
  54. If you are not already familiar with using Git, we recommend you visit <a
  55. href="http://git-scm.org">the Git website</a>.
  56. <p>
  57. Once you've checked out a copy of the source tree, you can update your source
  58. tree at any time so it is in sync with the latest and greatest by entering your
  59. buildroot directory and running the command:
  60. <pre>
  61. git pull
  62. </pre>
  63. Because you've only been granted anonymous access to the tree, you won't be
  64. able to push your changes to the repo. Changes can instead be submitted for
  65. inclusion by posting them to the buildroot mailing list.
  66. </div><!--/.col-sm-10 -->
  67. </div><!--/.row -->
  68. <!--#include file="footer.html" -->