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