summaryrefslogtreecommitdiffstats
path: root/site/download/index.php
blob: 3e8b62087604a23ac45ef779b97a0cff5d83d0e1 (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<?php
/*
    Download page
    Copyright (C) 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>Download <?php echo $lbProjectName; ?></title>

</head>

<body>

	<div class="contain">

		<div id="libreboot" class="section intro">
				
				<p>
					<a href="../images/welcome_screen.png"><img class="homepage_logo" src="../images/welcome_screen_small.jpg" alt="" title="<?php include "../images/welcome_screen.png.license.txt"; ?>" /></a>
				</p>
				
			<h1>Download <?php echo $lbProjectName; ?></h1>
			
				<p>
					Information about these releases can be found at <a href="../docs/release.html">../docs/release.html</a>.
					Documentation can be found at <a href="../docs/index.html">../docs/index.html</a>.
					A copy of /docs/ can also be found in the release archives.
				</p>
				
				<!-- <p>
					TODO: set up RSS and Atom feeds for the bittorrent links (but not the HTTP mirrors).
					The main gitweb page (for the main git repository) already generates atom/rss feeds.
				</p> -->
				
				<ul class="ulnav">
					<li><a href="#torrent">Bittorrent</a></li>
					<li><a href="#http">HTTP mirrors</a></li>
					<li><a href="#git">Git repositories (development)</a></li>
				</ul>
				
				<p>
					<a href="../">Back to home page</a>
				</p>

		</div>
		
		<div class="section" id="gpg">
			
			<h1 id="gpg">GPG signing key</h1>

				<p>
					<?php echo $lbProjectGpgKeyInfo; ?>
				</p>
				<p>
					Download the key:<br/>
					$ <b>gpg --recv-keys <?php echo $lbProjectGpgKeyID; ?></b>
				</p>
				<p>
					You can verify the downloaded archives as follows:<br/>
					$ <b>for signature in $(ls *.tar.xz.sig); do gpg --verify $signature; done</b>
				</p>
		
		</div>

		<div class="section" id="torrent">
			
			<p><b>Torrent links do not work yet. Use the HTTP downloads.</b></p>
			
			<h1>Bittorrent</h1>

			<?php
				/* Show current version */
				echo torrent_list($lbTorrentLink, 0, 1);
			?>

			<?php
				/* Link to old releases */
				if (count($lbTorrentLink)>1) {
			?>
			<p>
				Torrents for older releases can be found at <a href="oldtorrent/">oldtorrent/</a>.
			</p>
<?php
	}
?>
				
			<p><b>Torrent links do not work yet. Use the HTTP downloads.</b></p>
				
		</div>
		
		<div class="section" id="http">
		
			<h1>HTTP mirrors</h1>
				<p>
					These mirrors are intended mainly for those who cannot use
					bittorrent. Otherwise, the <a href="#torrent">torrent links</a>
					are highly recommended.
				</p>
				
				<ul>
<?php
	if (count($lbHttpMirror)>0) {
		for ($server=0; $server<count($lbHttpMirror); $server++) {
?>
					<li><a href="<?php echo $lbHttpMirror[$server]; ?>"><?php echo $lbHttpMirror[$server]; ?></a></li>
<?php
		}
	} else {
?>
					<li>HTTP mirrors not added yet.</li>
<?php
	}
?>
				</ul>

				<p>
					Are you running a mirror? Contact the <?php echo $lbProjectName; ?> project
					(details are on the <a href="../">home page</a>), and the link will be added here.
				</p>
	
		</div>
		
		<div class="section" id="git">
		
			<h1>Git repositories (development)</h1>
			
				<p>
					These git repositories are intended for the development of <?php echo $lbProjectName; ?>.
					The ROM images built from git are untested, and therefore not
					recommended for general use (you should assume that they will
					brick your computer).
				</p>
				
				<p>
					Snapshots (preview releases) of the git repository can be found at
					<a href="../git/">../git/</a>.
				</p>
				<p>
					Documentation for <?php echo $lbProjectName; ?> from git can be found in
					the git repository itself (under /docs/), or a live version
					can be found at <a href="../gitdocs/index.html">../gitdocs/index.html</a>.
				</p>
			
				<h2>Main repositories</h2>
					<p>
						This is the main repository, hosted by the <?php echo $lbProjectName; ?> project.
					</p>
					<p>
						Firmware: $ <b>git clone <a href="<?php echo $lbFirmwareGitwebAddress; ?>"><?php echo $lbFirmwareGitRepoAddress; ?></a></b><br/>
						Website: $ <b>git clone <a href="<?php echo $lbWebsiteGitwebAddress; ?>"><?php echo $lbWebsiteGitRepoAddress; ?></a></b>
					</p>
					<p>
						<a href="../github/">Please do not use GitHub!</a>
					</p>
					
				<h2>Backup repositories</h2>
					<p>
						Backup repositories, in case the main repository is down.
						Although these are regularly updated by the <?php echo $lbProjectName; ?> project, you
						should ideally use the main repository.
					</p>
					<p>
						<a href="../github/">Please do not use GitHub!</a>
					</p>
					
					<h3>Firmware (coreboot distribution)</h3>
						<p>
<?php
	for ($server=0; $server<count($lbFirmwareBackupGitRepoAddress); $server++) {
?>
							$ <b>git clone <?php echo $lbFirmwareBackupGitRepoAddress[$server]; ?></b>
							<?php if ($server!=count($lbFirmwareBackupGitRepoAddress)-1) echo "<br/>"; ?>
<?php
	}
?>
						</p>

					<h3>Project website</h3>
						<p>
<?php
	for ($server=0; $server<count($lbWebsiteBackupGitRepoAddress); $server++) {
?>
							$ <b>git clone <?php echo $lbWebsiteBackupGitRepoAddress[$server]; ?></b>
							<?php if ($server!=count($lbWebsiteBackupGitRepoAddress)-1) echo "<br/>"; ?>
<?php
	}
?>
						</p>
		
		</div>

		<div class="section footer">

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

		</div>
	
	</div>

</body>
</html>