diff options
-rw-r--r-- | site/common/variables.php | 8 | ||||
-rw-r--r-- | site/download/index.php | 25 |
2 files changed, 32 insertions, 1 deletions
diff --git a/site/common/variables.php b/site/common/variables.php index 370580a..279c413 100644 --- a/site/common/variables.php +++ b/site/common/variables.php @@ -133,4 +133,12 @@ array("20131212", "2013-12-12") ) ); + + /* release list (unstable/beta). format is: version number, then date of release */ + /* latest releases first, earlier releases are at the bottom */ + $lbBetaRelease = array ( + array ( + array("20151114", "2015-11-14") + ) + ); ?> diff --git a/site/download/index.php b/site/download/index.php index 4706124..94e8404 100644 --- a/site/download/index.php +++ b/site/download/index.php @@ -34,7 +34,7 @@ <div> - <h1><?php echo gettext("Download libreboot"); ?></h1> + <h1><?php echo gettext("Download libreboot (stable releases)"); ?></h1> <p> <b> @@ -56,6 +56,29 @@ </div> + <div> + <h1>Download libreboot (unstable/beta releases)</h1> + <p> + <b> + <?php echo gettext("The latest UNSTABLE, BETA, NOT READY FOR PRODUCTION USE release is:"); ?> <?php echo $lbBetaRelease[0][0][0]; ?>. + <?php echo gettext("Release date:"); ?> <?php echo $lbBetaRelease[0][0][1]; ?>. + </p> + <p style="font-size:120%"> + <b><u>WARNING: the probability that these releases will brick your machine is above 70%</u>. You may also be attacked by sharks. + Proceed with caution.</b> + </p> + <p> + Over time, stable libreboot release cycles have become much slower, due to more boards being supported + and more work being done, which means a lot more testing/fixing needs to be done before each release. + Therefore, we now offer unstable releases in between stable releases. + These releases are updated fairly regularly, built from the latest version of libreboot + from the <a href="../git/">git repository</a>. + </p> + <p> + You can download these releases in the <b><i>beta</i></b> directory, from the available libreboot mirror sites. + </p> + </div> + <?php include "../common/ccs.php"; include "../common/footer.php"; |