2
1

download.html 2.6 KB

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