download.html 4.9 KB

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