<?php /* Home page Copyright (C) 2014, 2015 Francis Rowe <info@gluglug.org.uk> This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ ?> <?php include_once "variables.php"; include_once "torrents.php"; ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="css/main.css" /> <title><?php echo $lbProjectNameCapitalized; ?> project</title> </head> <body> <div class="contain"> <div id="libreboot" class="section intro"> <p> <img class="homepage_logo" src="logo/logo.svg" alt="" title="<?php include "logo/license.txt"; ?>" /> </p> <h1><?php echo $lbProjectNameCapitalized; ?> project</h1> <p> <?php echo $lbProjectNameCapitalized; ?> is a <a href="https://www.fsf.org/about/what-is-free-software">free</a> (libre) BIOS/UEFI replacement for your computer. Based on <a href="http://coreboot.org/">coreboot</a>, the aim is to distribute low-level boot firmware that is 100% free software. The project is aimed at users, attempting to make coreboot as easy to use as possible. <a href="docs/index.html#why">Learn more about <?php echo $lbProjectName; ?></a>. </p> <p> 'Free' in this sense refers to freedom (liberty); read the full <a href="https://www.gnu.org/philosophy/free-sw.html">Free Software definition</a>. </p> </div> <div class="section"> <h1>But why? What is this all about?</h1> <p> We believe that everyone deserves the freedom to study, alter and improve technology, to use it freely without restriction. The goal is identical to that of the <a href="https://fsf.org/">Free Software Foundation</a>, which is to ensure that everything you need to do on a computer can be done exclusively with free software. </p> <p> <?php echo $lbProjectNameCapitalized; ?> also has many practical advantages over <a href="https://gnu.org/philosophy/proprietary/">proprietary</a> boot firmware, such as faster boot speeds and better security. Since the source code is public and fully auditable, malicious features such as backdoors (common in proprietary firmware) are unlikely to exist. You can <a href="docs/gnulinux/index.html">install GNU/Linux with encrypted /boot/</a>, configure it to <a href="http://www.coreboot.org/GRUB2#signed_kernels">only boot kernels signed with your GPG key</a>, run a <a href="http://proteanos.com/">full operating system</a> directly from the flash chip (coming soon!), and more. </p> </div> <div class="section"> <h1>Contributing to libreboot?</h1> <p> The instructions at <a href="download/#contrib">download/#contrib</a> show how to submit patches. The list of currently defined tasks is listed at <a href="gitdocs/tasks.html">gitdocs/tasks.html</a>. The gitdocs/ directory is also part of the git repository (it's a symlink to a working repository), so you can also submit patches adding to that list of tasks. </p> </div> <div class="fullheight"> <div class="section stable" style="height:15em;"> <h1>Stable releases</h1> <p> These releases are tested, and recommended for general use. Utilities (statically compiled) and ROM images are provided, built from the source code. </p> <ul class="ulnav"> <li><a href="download/">Downloads</a></li> <li><a href="docs/install/index.html">How to install <?php echo $lbProjectName; ?></a></li> <li><a href="docs/gnulinux/index.html">How to install GNU/Linux on a <?php echo $lbProjectName; ?> system</a></li> <li><a href="docs/hcl/index.html#supported_list">List of supported systems</a></li> <li><a href="docs/index.html">General documentation</a></li> </ul> <p> The latest release is from <?php echo $lbTorrentLink[0][0][1]; ?>. </p> </div> <div class="section unstable"> <h1>Development (unstable)</h1> <p>Use this version if you want to <b>brick</b> your computer.</p> <div class="subsection"> <p> <b>git clone <a href="<?php echo $lbFirmwareGitwebAddress; ?>"><?php echo $lbFirmwareGitRepoAddress; ?></a></b> </p> </div> <ul class="ulnav"> <li><a href="gitdocs/git/index.html#build_meta">How to use the git repository</a></li> <li><a href="<?php echo $lbBugTrackerAddress; ?>">Bug tracker</a></li> <li><a href="gitdocs/index.html">Documentation</a></li> <li><b><a href="github/">Please do not use GitHub!</a></b></li> <li><b><a href="gitorious/">Please do not use Gitorious/GitLab!</a></b></li> </ul> <p> Snapshot (<a href="<?php echo $lbFirmwareGitwebAddress; ?>;a=commit;h=<?php include "git/commitid"; ?>">view commit</a>): <a href="git/rom">ROM images</a> <a href="git/libreboot_src.tar.xz">Source code</a> </p> </div> </div> <div class="section contact"> <h1>Contact information</h1> <ul class="ulnav"> <li><a href="contrib/">List of maintainers</a></li> <li><a href="<?php echo $userMailingListAddress; ?>">User support mailing list</a></li> <li><a href="<?php echo $devMailingListAddress; ?>">Development mailing list</a></li> <li><a href="<?php echo $ircChannelAddress; ?>"><?php echo $ircChannelName; ?></a></li> </ul> </div> <div class="section footer"> <?php include "footer.php"; ?> </div> </div> </body> </html>