download.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <!--#include file="header.html" -->
  2. <div class="container">
  3. <div class="row nh">
  4. <div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
  5. <div class="panel panel-primary">
  6. <div class="panel-heading">Download</div>
  7. <div class="panel-body">
  8. <table class="table">
  9. <tr>
  10. <td></td>
  11. <th>Series</th>
  12. <th>End of Life</th>
  13. <th>Latest release</th>
  14. <th>Latest release date</th>
  15. <th colspan="2">Downloads</td>
  16. </tr>
  17. <tr>
  18. <th>Candidate</th>
  19. <th>2025.08.x</th>
  20. <td>December 2025</td>
  21. <td>
  22. 2025.08-rc3<br/>
  23. <a href="https://gitlab.com/buildroot.org/buildroot/-/blob/2025.08-rc3/CHANGES">
  24. Changelog
  25. </a>
  26. </td>
  27. <td>2025-08-28</td>
  28. <td>
  29. <a href="/downloads/buildroot-2025.08-rc3.tar.gz">
  30. <img src="images/zip.png" width="24" alt="">
  31. .tar.gz
  32. </a><br/>
  33. <a href="/downloads/buildroot-2025.08-rc3.tar.gz.sign">[PGP sig]</a>
  34. </td>
  35. <td>
  36. <a href="/downloads/buildroot-2025.08-rc3.tar.xz">
  37. <img src="images/package.png" width="24" alt="">
  38. .tar.xz
  39. </a><br/>
  40. <a href="/downloads/buildroot-2025.08-rc3.tar.xz.sign">[PGP sig]</a>
  41. </td>
  42. </tr>
  43. <tr>
  44. <th>Stable</th>
  45. <th>2025.05.x</th>
  46. <td>September 2025</td>
  47. <td>
  48. 2025.05.1<br/>
  49. <a href="https://gitlab.com/buildroot.org/buildroot/-/blob/2025.05.1/CHANGES">
  50. Changelog
  51. </a>
  52. </td>
  53. <td>2025-08-11</td>
  54. <td>
  55. <a href="/downloads/buildroot-2025.05.1.tar.gz">
  56. <img src="images/zip.png" width="24" alt="">
  57. .tar.gz
  58. </a><br/>
  59. <a href="/downloads/buildroot-2025.05.1.tar.gz.sign">[PGP sig]</a>
  60. </td>
  61. <td>
  62. <a href="/downloads/buildroot-2025.05.1.tar.xz">
  63. <img src="images/package.png" width="24" alt="">
  64. .tar.xz
  65. </a><br/>
  66. <a href="/downloads/buildroot-2025.05.1.tar.xz.sign">[PGP sig]</a>
  67. </td>
  68. </tr>
  69. <tr>
  70. <th>Long-term support</th>
  71. <th>2025.02.x</th>
  72. <td>March 2028</td>
  73. <td>
  74. 2025.02.5<br/>
  75. <a href="https://gitlab.com/buildroot.org/buildroot/-/blob/2025.02.5/CHANGES">
  76. Changelog
  77. </a>
  78. </td>
  79. <td>2025-08-11</td>
  80. <td>
  81. <a href="/downloads/buildroot-2025.02.5.tar.gz">
  82. <img src="images/zip.png" width="24" alt="">
  83. .tar.gz
  84. </a><br/>
  85. <a href="/downloads/buildroot-2025.02.5.tar.gz.sign">[PGP sig]</a>
  86. </td>
  87. <td>
  88. <a href="/downloads/buildroot-2025.02.5.tar.xz">
  89. <img src="images/package.png" width="24" alt="">
  90. .tar.xz
  91. </a><br/>
  92. <a href="/downloads/buildroot-2025.02.5.tar.xz.sign">[PGP sig]</a>
  93. </td>
  94. </tr>
  95. </table>
  96. This and earlier releases (and their PGP signatures) can always be downloaded from
  97. <a href="/downloads/">http://buildroot.net/downloads/</a>.
  98. </div>
  99. </div>
  100. <div class="panel panel-primary">
  101. <div class="panel-heading">Git repository</div>
  102. <div class="panel-body">
  103. <p>The buildroot repository can be browsed online at
  104. <a href="https://gitlab.com/buildroot.org/buildroot/">https://gitlab.com/buildroot.org/buildroot/</a>.</p>
  105. <p>To grab a copy of the repository use</p>
  106. <div class="input-group" style="width: 100%;">
  107. <input class="form-control" style="width: 85%;" id="giturl"
  108. value="git clone https://gitlab.com/buildroot.org/buildroot.git" type="text" readonly></input>
  109. <span class="input-group-button">
  110. <button class="btn pull-right" type="button" data-clipboard-target="#giturl"
  111. data-toggle="tooltip" data-placement="bottom" data-trigger="manual" title="Copied!">
  112. <img class="clippy" src="images/clippy.svg" alt="Copy to clipboard" width="13">
  113. </button>
  114. </span>
  115. </div><br>
  116. <p>If you are not already familiar with using Git, we recommend
  117. you visit <a href="http://git-scm.org">the Git
  118. website</a>.</p>
  119. <p>Once you've checked out a copy of the source tree, you can
  120. update your source tree at any time so it is in sync with the
  121. latest and greatest by entering your buildroot directory and
  122. running the command:</p>
  123. <pre>git pull</pre>
  124. <p>Because you've only been granted anonymous access to the
  125. tree, you won't be able to push your changes to the
  126. repo. Changes can instead be submitted for inclusion by
  127. posting them to the buildroot mailing list.</p>
  128. </div>
  129. </div>
  130. </div><!--/.col-sm-10 -->
  131. </div><!--/.row -->
  132. </div>
  133. <!--#include file="footer.html" -->