summaryrefslogtreecommitdiffstats
path: root/site/index.php
blob: 38e70112a50a65243f922a03bf71ad8940d4bf9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?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/>.
*/
	header('Content-type: text/html; charset=utf-8');
	ob_start();
	include_once "common/variables.php";
	include_once "common/functions.php";
?>
<!DOCTYPE html>
<html>
<head>
	<style type="text/css">
		<?php echo miniCss(file_get_contents("common/css/main.css")); ?>
	</style>
	<title><?php echo gettext("Libreboot project"); ?></title>
</head>

<body>

	<div>
		<p>
			<a href="logo/"><img src="logo/logo.svg" alt="Libreboot logo" title="Canteloupe, the libreboot mascot" /></a>
		</p>
		<h1><?php echo gettext("Libreboot project"); ?></h1>
			<p>
				Libreboot is <a href="https://www.fsf.org/about/what-is-free-software">free</a> (libre) boot firmware based on <a href="http://coreboot.org/">coreboot</a>,
				intended to replace the proprietary <a href="https://en.wikipedia.org/wiki/BIOS">BIOS</a> or <a href="https://en.wikipedia.org/wiki/Unified_Extensible_Firmware_Interface">UEFI</a> firmware.
				Boot firmware is the low-level software that runs when you turn your computer on, which initializes the
				hardware and starts a bootloader for your operating system. <a href="docs/index.html#why">Learn more</a>
			</p>
			<p>
				Most people in the global <a href="https://www.gnu.org/philosophy/free-sw.html">free software</a> community are using free operating systems; namely, the <a href="https://gnu.org/">GNU operating system</a>.
				However, most people still rely on <a href="https://gnu.org/philosophy/proprietary/">proprietary</a> boot firmware.
				The goal of the libreboot project is identical to that of the <a href="https://gnu.org/">GNU project</a> and <a href="https://fsf.org/">Free Software Foundation</a>, which is to ensure that everyone
				has the freedom to use, study, modify and share software; in other words, the freedom to truly own and control the technology that they use. We want everyone to be able to use free software, exclusively.
			</p>
			<p>
				Libreboot is <i>free software</i>; we do not use the term <i>open source</i>, because that term ignores the ethical ideals of the free software movement, focusing only on practicality and efficiency. Read <a href="https://www.gnu.org/philosophy/open-source-misses-the-point.html">this article</a> for more information.
				However, libreboot also qualifies as an open source BIOS or UEFI firmware replacement.
			</p>
			<p>
				Libreboot provides a fully free (deblobbed) coreboot tree, called <i>coreboot-libre</i>, with <a href="http://www.coreboot.org/Payloads">payloads</a> and utilities already included. It attempts to make coreboot
				easy to use, by providing a fully automated build and installation process (and <i>tested, stable releases</i>), along with documentation designed for non-technical users.
				You don't even need to build from source if you don't want to; ROM images and utilities are also included in each release, pre-compiled from the available source code.
			</p>
			<p>
				Libreboot has many practical advantages over proprietary firmware, such as faster boot speeds and better security. For example, you can <a href="docs/gnulinux/grub_boot_installer.html#encryption">install GNU/Linux with an encrypted /boot/ directory</a>, <a href="http://www.coreboot.org/GRUB2#signed_kernels">verify a GPG signature on your kernel before booting it</a>, <i>load a kernel from the flash chip</i>, and more!
			</p>
			<ul>
				<li><a href="download/"><?php echo gettext("Download libreboot"); ?></a></li>
				<li><a href="git/"><?php echo gettext("Git repositories"); ?></a></li>
				<li><a href="gpg/"><?php echo gettext("GPG keys"); ?></a></li>
				<li><a href="rsync/"><?php echo gettext("Mirroring libreboot"); ?> (rsync)</a></li>
			</ul>
			<ul>
				<li><a href="docs/index.html"><?php echo gettext("Documentation"); ?></a></li>
				<li><a href="docs/hcl/index.html#supported_list"><?php echo gettext("List of supported systems"); ?></a></li>
				<li><a href="docs/install/index.html"><?php echo gettext("How to install libreboot"); ?></a></li>
				<li><a href="docs/gnulinux/grub_boot_installer.html"><?php echo gettext("How to install GNU/Linux"); ?></a></li>
				<li><a href="docs/gnulinux/grub_cbfs.html"><?php echo gettext("How to boot GNU/Linux"); ?></a></li>
			</ul>
			<ul>
				<li><b><a href="faq/">Frequently Asked Questions (and answers to those questions)</a></b></li>
			</ul>
			<h1 id="howtohelp">How to help?</h1>
				<ul>
					<li><a href="docs/tasks.html">List of tasks that need to be completed</a></li>
					<li><a href="docs/maintain/index.html">How to maintain libreboot</a></li>
				</ul>
			<h2 id="contact"><?php echo gettext("Contact the libreboot project"); ?></h2>
				<ul>
					<li><a href="contrib/"><?php echo gettext("List of maintainers"); ?></a></li>
					<li><a href="<?php echo $userMailingListAddress; ?>"><?php echo gettext("Mailing list"); ?></a></li>
					<li><a href="<?php echo $devMailingListAddress; ?>"><?php echo gettext("Dev mailing list"); ?></a></li>
					<li><a href="<?php echo $ircChannelAddress; ?>"><?php echo $ircChannelName; ?></a></li>
				</ul>
			<h2>Laptops with libreboot and GNU/Linux preinstalled</h2>
				<p>
					<a href="suppliers/">Laptops with libreboot and GNU/Linux preinstalled</a> are also available.
				</p>
				<p>
					These systems come with libreboot and GNU/Linux preinstalled, where everything works out of the box. This is useful, for those who
					do not want to install the software on their own, but still want to use it. These systems are fully endorsed by the Free Software Foundation,
					under their <i>Respects your Freedom</i> certification.
				</p>
	</div>
	<div>
		<h1>
			Libreboot is important, but this is also important:
		</h1>
			<h2>FCC in the USA is trying to make free software in WiFi-enabled devices illegal!</h2>
				<p>
					This is unacceptable. It will mean that devices can no longer be freed. This has an implication for
					routers, laptops and just about anything that has a radio device in it. It will also have serious implications
					for the libreboot project, if it is permitted to pass.
				</p>
				<p>
					Not in the USA? That doesn't matter. The FCC's decision here will affect everyone.
				</p>
				<p>
					Visit <a href="http://savewifi.org/">SaveWifi.org</a> to learn more, and to find out what you can do about it. <b>Europeans, read <a href="https://juliareda.eu/2015/10/dear-european-governments-dont-endanger-free-and-open-wifi-networks/">this article</a>.</b>
				</p>
	</div>

<?php
	include "common/footer.php";
?>

</body>
</html>
<?php
	$strHtml = ob_get_clean();
	echo miniHtml($strHtml);
?>