1 |
4668f9f7
|
Scott Ullrich
|
<?php
|
2 |
b46bfcf5
|
Bill Marquette
|
/* $Id$ */
|
3 |
5b237745
|
Scott Ullrich
|
/*
|
4 |
580182e2
|
Colin Smith
|
system_firmware.php
|
5 |
1cecfbf7
|
Scott Ullrich
|
Copyright (C) 2008 Scott Ullrich <sullrich@gmail.com>
|
6 |
|
|
All rights reserved.
|
7 |
580182e2
|
Colin Smith
|
|
8 |
1cecfbf7
|
Scott Ullrich
|
originally part of m0n0wall (http://m0n0.ch/wall)
|
9 |
580182e2
|
Colin Smith
|
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
|
10 |
|
|
All rights reserved.
|
11 |
|
|
|
12 |
|
|
Redistribution and use in source and binary forms, with or without
|
13 |
|
|
modification, are permitted provided that the following conditions are met:
|
14 |
|
|
|
15 |
|
|
1. Redistributions of source code must retain the above copyright notice,
|
16 |
|
|
this list of conditions and the following disclaimer.
|
17 |
|
|
|
18 |
|
|
2. Redistributions in binary form must reproduce the above copyright
|
19 |
|
|
notice, this list of conditions and the following disclaimer in the
|
20 |
|
|
documentation and/or other materials provided with the distribution.
|
21 |
|
|
|
22 |
|
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
23 |
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
24 |
|
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
25 |
|
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
26 |
|
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
27 |
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
28 |
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
29 |
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
30 |
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
31 |
|
|
POSSIBILITY OF SUCH DAMAGE.
|
32 |
5b237745
|
Scott Ullrich
|
*/
|
33 |
1d333258
|
Scott Ullrich
|
/*
|
34 |
|
|
pfSense_BUILDER_BINARIES: /usr/bin/tar
|
35 |
|
|
pfSense_MODULE: firmware
|
36 |
|
|
*/
|
37 |
5b237745
|
Scott Ullrich
|
|
38 |
6b07c15a
|
Matthew Grooms
|
##|+PRIV
|
39 |
|
|
##|*IDENT=page-system-firmware-manualupdate
|
40 |
|
|
##|*NAME=System: Firmware: Manual Update page
|
41 |
|
|
##|*DESCR=Allow access to the 'System: Firmware: Manual Update' page.
|
42 |
|
|
##|*MATCH=system_firmware.php*
|
43 |
|
|
##|-PRIV
|
44 |
|
|
|
45 |
3958d63b
|
Colin Smith
|
$d_isfwfile = 1;
|
46 |
7385a6b4
|
Scott Ullrich
|
$nocsrf = true;
|
47 |
|
|
|
48 |
f0394a03
|
Scott Ullrich
|
require_once("globals.inc");
|
49 |
c1605b35
|
Scott Ullrich
|
require_once("functions.inc");
|
50 |
6605faea
|
Scott Ullrich
|
require_once("guiconfig.inc");
|
51 |
da55e467
|
Scott Ullrich
|
|
52 |
|
|
$curcfg = $config['system']['firmware'];
|
53 |
|
|
|
54 |
6605faea
|
Scott Ullrich
|
require_once("xmlrpc_client.inc");
|
55 |
aa08f46b
|
Bill Marquette
|
|
56 |
47d11b79
|
Mark Crane
|
/* Allow additional execution time 0 = no limit. */
|
57 |
8999038a
|
Scott Ullrich
|
ini_set('max_execution_time', '9999');
|
58 |
|
|
ini_set('max_input_time', '9999');
|
59 |
0045dfd1
|
Scott Ullrich
|
|
60 |
d2d86ca3
|
Scott Ullrich
|
function file_is_for_platform($filename, $ul_name) {
|
61 |
f0394a03
|
Scott Ullrich
|
global $g;
|
62 |
3350a691
|
Scott Ullrich
|
if($g['platform'] == "nanobsd") {
|
63 |
d2d86ca3
|
Scott Ullrich
|
if(stristr($ul_name, "nanobsd"))
|
64 |
7475fc0b
|
Scott Ullrich
|
return true;
|
65 |
|
|
else
|
66 |
|
|
return false;
|
67 |
|
|
}
|
68 |
1d333258
|
Scott Ullrich
|
exec("/usr/bin/tar xzf $filename -C /tmp/ etc/platform");
|
69 |
fe38f1da
|
Scott Ullrich
|
if(!file_exists("/tmp/etc/platform"))
|
70 |
|
|
return false;
|
71 |
|
|
$upgrade_is_for_platform = trim(file_get_contents("/tmp/etc/platform"));
|
72 |
f0394a03
|
Scott Ullrich
|
if($g['platform'] == $upgrade_is_for_platform) {
|
73 |
fb05887a
|
Scott Ullrich
|
unlink("/tmp/etc/platform");
|
74 |
f0394a03
|
Scott Ullrich
|
return true;
|
75 |
|
|
}
|
76 |
|
|
return false;
|
77 |
|
|
}
|
78 |
|
|
|
79 |
cdd3238d
|
Scott Ullrich
|
function file_upload_error_message($error_code) {
|
80 |
|
|
switch ($error_code) {
|
81 |
|
|
case UPLOAD_ERR_INI_SIZE:
|
82 |
1b4f376d
|
Vinicius Coque
|
return gettext('The uploaded file exceeds the upload_max_filesize directive in php.ini');
|
83 |
cdd3238d
|
Scott Ullrich
|
case UPLOAD_ERR_FORM_SIZE:
|
84 |
1b4f376d
|
Vinicius Coque
|
return gettext('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form');
|
85 |
cdd3238d
|
Scott Ullrich
|
case UPLOAD_ERR_PARTIAL:
|
86 |
1b4f376d
|
Vinicius Coque
|
return gettext('The uploaded file was only partially uploaded');
|
87 |
cdd3238d
|
Scott Ullrich
|
case UPLOAD_ERR_NO_FILE:
|
88 |
1b4f376d
|
Vinicius Coque
|
return gettext('No file was uploaded');
|
89 |
cdd3238d
|
Scott Ullrich
|
case UPLOAD_ERR_NO_TMP_DIR:
|
90 |
1b4f376d
|
Vinicius Coque
|
return gettext('Missing a temporary folder');
|
91 |
cdd3238d
|
Scott Ullrich
|
case UPLOAD_ERR_CANT_WRITE:
|
92 |
1b4f376d
|
Vinicius Coque
|
return gettext('Failed to write file to disk');
|
93 |
cdd3238d
|
Scott Ullrich
|
case UPLOAD_ERR_EXTENSION:
|
94 |
1b4f376d
|
Vinicius Coque
|
return gettext('File upload stopped by extension');
|
95 |
cdd3238d
|
Scott Ullrich
|
default:
|
96 |
1b4f376d
|
Vinicius Coque
|
return gettext('Unknown upload error');
|
97 |
cdd3238d
|
Scott Ullrich
|
}
|
98 |
|
|
}
|
99 |
|
|
|
100 |
8b7c81d7
|
Scott Ullrich
|
/* if upgrade in progress, alert user */
|
101 |
a368a026
|
Ermal Lu?i
|
if(is_subsystem_dirty('firmwarelock')) {
|
102 |
1b4f376d
|
Vinicius Coque
|
$pgtitle = array(gettext("System"),gettext("Firmware"),gettext("Manual Update"));
|
103 |
8b7c81d7
|
Scott Ullrich
|
include("head.inc");
|
104 |
|
|
echo "<body link=\"#0000CC\" vlink=\"#0000CC\" alink=\"#0000CC\">\n";
|
105 |
|
|
include("fbegin.inc");
|
106 |
|
|
echo "<div>\n";
|
107 |
19e76a0b
|
Scott Ullrich
|
print_info_box(gettext("An upgrade is currently in progress.<p>The firewall will reboot when the operation is complete.") . "<p><img src='/themes/{$g['theme']}/images/icons/icon_fw-update.gif'>");
|
108 |
8b7c81d7
|
Scott Ullrich
|
echo "</div>\n";
|
109 |
|
|
include("fend.inc");
|
110 |
|
|
echo "</body>";
|
111 |
|
|
echo "</html>";
|
112 |
|
|
exit;
|
113 |
|
|
}
|
114 |
|
|
|
115 |
b2a67b55
|
Scott Ullrich
|
if($_POST['backupbeforeupgrade'])
|
116 |
|
|
touch("/tmp/perform_full_backup.txt");
|
117 |
|
|
|
118 |
afa829bb
|
Scott Ullrich
|
if($_POST['kerneltype']) {
|
119 |
|
|
if($_POST['kerneltype'] == "single")
|
120 |
|
|
system("touch /boot/kernel/pfsense_kernel.txt");
|
121 |
|
|
else
|
122 |
|
|
system("echo {$_POST['kerneltype']} > /boot/kernel/pfsense_kernel.txt");
|
123 |
|
|
}
|
124 |
|
|
|
125 |
aa08f46b
|
Bill Marquette
|
/* Handle manual upgrade */
|
126 |
a368a026
|
Ermal Lu?i
|
if ($_POST && !is_subsystem_dirty('firmwarelock')) {
|
127 |
77a89fb6
|
Scott Ullrich
|
|
128 |
580182e2
|
Colin Smith
|
unset($input_errors);
|
129 |
|
|
unset($sig_warning);
|
130 |
|
|
|
131 |
4134b5e6
|
Carlos Eduardo Ramos
|
if (stristr($_POST['Submit'], gettext("Enable")))
|
132 |
580182e2
|
Colin Smith
|
$mode = "enable";
|
133 |
4134b5e6
|
Carlos Eduardo Ramos
|
else if (stristr($_POST['Submit'], gettext("Disable")))
|
134 |
580182e2
|
Colin Smith
|
$mode = "disable";
|
135 |
4134b5e6
|
Carlos Eduardo Ramos
|
else if (stristr($_POST['Submit'], gettext("Upgrade")) || $_POST['sig_override'])
|
136 |
580182e2
|
Colin Smith
|
$mode = "upgrade";
|
137 |
|
|
else if ($_POST['sig_no']) {
|
138 |
709f48f0
|
Scott Ullrich
|
if(file_exists("{$g['upload_path']}/firmware.tgz"))
|
139 |
|
|
unlink("{$g['upload_path']}/firmware.tgz");
|
140 |
580182e2
|
Colin Smith
|
}
|
141 |
|
|
if ($mode) {
|
142 |
|
|
if ($mode == "enable") {
|
143 |
b6f67235
|
Scott Ullrich
|
conf_mount_rw();
|
144 |
a368a026
|
Ermal Lu?i
|
mark_subsystem_dirty('firmware');
|
145 |
580182e2
|
Colin Smith
|
} else if ($mode == "disable") {
|
146 |
b6f67235
|
Scott Ullrich
|
conf_mount_ro();
|
147 |
a368a026
|
Ermal Lu?i
|
clear_subsystem_dirty('firmware');
|
148 |
580182e2
|
Colin Smith
|
} else if ($mode == "upgrade") {
|
149 |
cdd3238d
|
Scott Ullrich
|
if ($_FILES['ulfile']['error'])
|
150 |
|
|
$errortext = "(" . file_upload_error_message($_FILES['ulfile']['error']) . ")";
|
151 |
580182e2
|
Colin Smith
|
if (is_uploaded_file($_FILES['ulfile']['tmp_name'])) {
|
152 |
|
|
/* verify firmware image(s) */
|
153 |
d2d86ca3
|
Scott Ullrich
|
if (file_is_for_platform($_FILES['ulfile']['tmp_name'], $_FILES['ulfile']['name']) == false && !$_POST['sig_override'])
|
154 |
33a2693c
|
Chris Buechler
|
$input_errors[] = gettext("The uploaded image file is not for this platform.");
|
155 |
580182e2
|
Colin Smith
|
else if (!file_exists($_FILES['ulfile']['tmp_name'])) {
|
156 |
|
|
/* probably out of memory for the MFS */
|
157 |
1b4f376d
|
Vinicius Coque
|
$input_errors[] = gettext("Image upload failed (out of memory?)");
|
158 |
0d64af59
|
Ermal Lu?i
|
mwexec("/etc/rc.firmware disable");
|
159 |
a368a026
|
Ermal Lu?i
|
clear_subsystem_dirty('firmware');
|
160 |
580182e2
|
Colin Smith
|
} else {
|
161 |
|
|
/* move the image so PHP won't delete it */
|
162 |
1ef7b568
|
Scott Ullrich
|
rename($_FILES['ulfile']['tmp_name'], "{$g['upload_path']}/firmware.tgz");
|
163 |
580182e2
|
Colin Smith
|
|
164 |
|
|
/* check digital signature */
|
165 |
1ef7b568
|
Scott Ullrich
|
$sigchk = verify_digital_signature("{$g['upload_path']}/firmware.tgz");
|
166 |
580182e2
|
Colin Smith
|
|
167 |
|
|
if ($sigchk == 1)
|
168 |
1b4f376d
|
Vinicius Coque
|
$sig_warning = gettext("The digital signature on this image is invalid.");
|
169 |
a0116247
|
Ermal
|
else if ($sigchk == 2 && !isset($config['system']['firmware']['allowinvalidsig']))
|
170 |
1b4f376d
|
Vinicius Coque
|
$sig_warning = gettext("This image is not digitally signed.");
|
171 |
a0116247
|
Ermal
|
else if (($sigchk >= 3))
|
172 |
1b4f376d
|
Vinicius Coque
|
$sig_warning = gettext("There has been an error verifying the signature on this image.");
|
173 |
580182e2
|
Colin Smith
|
|
174 |
709f48f0
|
Scott Ullrich
|
if (!verify_gzip_file("{$g['upload_path']}/firmware.tgz")) {
|
175 |
1b4f376d
|
Vinicius Coque
|
$input_errors[] = gettext("The image file is corrupt.");
|
176 |
1ef7b568
|
Scott Ullrich
|
unlink("{$g['upload_path']}/firmware.tgz");
|
177 |
580182e2
|
Colin Smith
|
}
|
178 |
|
|
}
|
179 |
|
|
}
|
180 |
|
|
|
181 |
1834f481
|
Scott Ullrich
|
run_plugins("/usr/local/pkg/firmware_upgrade");
|
182 |
|
|
|
183 |
1ef7b568
|
Scott Ullrich
|
/* Check for input errors, firmware locks, warnings, then check for firmware if sig_override is set */
|
184 |
a368a026
|
Ermal Lu?i
|
if (!$input_errors && !is_subsystem_dirty('firmwarelock') && (!$sig_warning || $_POST['sig_override'])) {
|
185 |
1ef7b568
|
Scott Ullrich
|
if (file_exists("{$g['upload_path']}/firmware.tgz")) {
|
186 |
|
|
/* fire up the update script in the background */
|
187 |
14442033
|
Scott Ullrich
|
mark_subsystem_dirty('firmwarelock');
|
188 |
1b4f376d
|
Vinicius Coque
|
$savemsg = gettext("The firmware is now being updated. The firewall will reboot automatically.");
|
189 |
bfed48a4
|
Scott Ullrich
|
if(stristr($_FILES['ulfile']['name'],"nanobsd") or $_POST['isnano'] == "yes")
|
190 |
b2d15ced
|
Scott Ullrich
|
mwexec_bg("/etc/rc.firmware pfSenseNanoBSDupgrade {$g['upload_path']}/firmware.tgz");
|
191 |
69769bcc
|
Scott Ullrich
|
else if(stristr($_FILES['ulfile']['name'],"bdiff"))
|
192 |
e1aea2cd
|
Scott Ullrich
|
mwexec_bg("/etc/rc.firmware delta_update {$g['upload_path']}/firmware.tgz");
|
193 |
|
|
else
|
194 |
|
|
mwexec_bg("/etc/rc.firmware pfSenseupgrade {$g['upload_path']}/firmware.tgz");
|
195 |
1ef7b568
|
Scott Ullrich
|
} else {
|
196 |
1b4f376d
|
Vinicius Coque
|
$savemsg = sprintf(gettext("Firmware image missing or other error, please try again %s."),$errortext);
|
197 |
1ef7b568
|
Scott Ullrich
|
}
|
198 |
|
|
}
|
199 |
580182e2
|
Colin Smith
|
}
|
200 |
|
|
}
|
201 |
5b237745
|
Scott Ullrich
|
}
|
202 |
e2fa4962
|
Scott Ullrich
|
|
203 |
3c446c66
|
Erik Fonnesbeck
|
$pgtitle = array(gettext("System"),gettext("Firmware"));
|
204 |
52380979
|
Scott Ullrich
|
include("head.inc");
|
205 |
|
|
|
206 |
5b237745
|
Scott Ullrich
|
?>
|
207 |
0045dfd1
|
Scott Ullrich
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
208 |
afc04d58
|
Scott Ullrich
|
<form action="system_firmware.php" method="post" enctype="multipart/form-data">
|
209 |
|
|
<?php
|
210 |
|
|
/* Construct an upload_id for this session */
|
211 |
|
|
$upload_id = "up". $_SESSION['Username'];
|
212 |
|
|
?>
|
213 |
|
|
<input type="hidden" name="UPLOAD_IDENTIFIER" value="<?php echo $upload_id;?>" />
|
214 |
580182e2
|
Colin Smith
|
<?php include("fbegin.inc"); ?>
|
215 |
|
|
<?php if ($input_errors) print_input_errors($input_errors); ?>
|
216 |
1ef7b568
|
Scott Ullrich
|
<?php if ($savemsg) print_info_box($savemsg); ?>
|
217 |
580182e2
|
Colin Smith
|
<?php if ($fwinfo <> "") print_info_box($fwinfo); ?>
|
218 |
77720bd3
|
Colin Smith
|
<?php if ($sig_warning && !$input_errors): ?>
|
219 |
4668f9f7
|
Scott Ullrich
|
<?php
|
220 |
1b4f376d
|
Vinicius Coque
|
$sig_warning = "<strong>" . $sig_warning . "</strong><br>" . gettext("This means that the image you uploaded " .
|
221 |
77a89fb6
|
Scott Ullrich
|
"is not an official/supported image and may lead to unexpected behavior or security " .
|
222 |
|
|
"compromises. Only install images that come from sources that you trust, and make sure ".
|
223 |
1b4f376d
|
Vinicius Coque
|
"that the image has not been tampered with.") . "<br><br>".
|
224 |
|
|
gettext("Do you want to install this image anyway (on your own risk)?");
|
225 |
5b237745
|
Scott Ullrich
|
print_info_box($sig_warning);
|
226 |
bfed48a4
|
Scott Ullrich
|
if(stristr($_FILES['ulfile']['name'],"nanobsd"))
|
227 |
|
|
echo "<input type='hidden' name='isnano' id='isnano' value='yes'>\n";
|
228 |
5b237745
|
Scott Ullrich
|
?>
|
229 |
4134b5e6
|
Carlos Eduardo Ramos
|
<input name="sig_override" type="submit" class="formbtn" id="sig_override" value=" <?=gettext("Yes");?> ">
|
230 |
|
|
<input name="sig_no" type="submit" class="formbtn" id="sig_no" value=" <?=gettext("No"); ?> ">
|
231 |
5b237745
|
Scott Ullrich
|
<?php else: ?>
|
232 |
a368a026
|
Ermal Lu?i
|
<?php if (!is_subsystem_dirty('firmwarelock')): ?>
|
233 |
580182e2
|
Colin Smith
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
234 |
77a89fb6
|
Scott Ullrich
|
<tr>
|
235 |
|
|
<td>
|
236 |
4820d297
|
Scott Ullrich
|
<?php
|
237 |
|
|
$tab_array = array();
|
238 |
3ff39566
|
Scott Ullrich
|
$tab_array[] = array(gettext("Manual Update"), true, "system_firmware.php");
|
239 |
|
|
$tab_array[] = array(gettext("Auto Update"), false, "system_firmware_check.php");
|
240 |
|
|
$tab_array[] = array(gettext("Updater Settings"), false, "system_firmware_settings.php");
|
241 |
|
|
if($g['hidedownloadbackup'] == false)
|
242 |
|
|
$tab_array[] = array(gettext("Restore Full Backup"), false, "system_firmware_restorefullbackup.php");
|
243 |
4820d297
|
Scott Ullrich
|
display_top_tabs($tab_array);
|
244 |
|
|
?>
|
245 |
77a89fb6
|
Scott Ullrich
|
</td>
|
246 |
580182e2
|
Colin Smith
|
</tr>
|
247 |
77a89fb6
|
Scott Ullrich
|
<tr>
|
248 |
|
|
<td>
|
249 |
|
|
<div id="mainarea">
|
250 |
|
|
<table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0">
|
251 |
|
|
<tr>
|
252 |
a6d8feb6
|
Renato Botelho
|
<td colspan="2" class="listtopic"><?=gettext("Invoke") ." ". $g['product_name'] ." ". gettext("Manual Upgrade"); ?></td>
|
253 |
77a89fb6
|
Scott Ullrich
|
</tr>
|
254 |
|
|
<tr>
|
255 |
|
|
<td width="22%" valign="baseline" class="vncell"> </td>
|
256 |
|
|
<td width="78%" class="vtable">
|
257 |
a368a026
|
Ermal Lu?i
|
<?php if (!is_subsystem_dirty('rebootreq')): ?>
|
258 |
|
|
<?php if (!is_subsystem_dirty('firmware')): ?>
|
259 |
e40d415a
|
Scott Ullrich
|
<input name="Submit" type="submit" class="formbtn" value="<?=gettext("Enable firmware upload");?>">
|
260 |
|
|
<br/>
|
261 |
68e14a6b
|
Scott Ullrich
|
<?php printf(gettext('Click "Enable firmware upload" to begin.'),$g['firmware_update_text']);?>
|
262 |
e40d415a
|
Scott Ullrich
|
<br/>
|
263 |
77a89fb6
|
Scott Ullrich
|
<?php else: ?>
|
264 |
1b4f376d
|
Vinicius Coque
|
<input name="Submit" type="submit" class="formbtn" value="<?=gettext("Disable firmware upload");?>">
|
265 |
e40d415a
|
Scott Ullrich
|
</td>
|
266 |
|
|
</tr>
|
267 |
|
|
<tr>
|
268 |
|
|
<td width="22%" valign="baseline" class="vncell"> </td>
|
269 |
|
|
<td width="78%" class="vtable">
|
270 |
|
|
<?php
|
271 |
|
|
if ($g['platform'] == "nanobsd")
|
272 |
|
|
$type = "*.img.gz";
|
273 |
|
|
else
|
274 |
|
|
$type = "*.tgz";
|
275 |
|
|
?>
|
276 |
|
|
<strong><?=gettext("Firmware image file ($type):");?> </strong>
|
277 |
77a89fb6
|
Scott Ullrich
|
<input name="ulfile" type="file" class="formfld">
|
278 |
e40d415a
|
Scott Ullrich
|
<br>
|
279 |
77a89fb6
|
Scott Ullrich
|
<?php
|
280 |
|
|
if(!file_exists("/boot/kernel/pfsense_kernel.txt")) {
|
281 |
|
|
if($g['platform'] == "pfSense") {
|
282 |
79eaddf4
|
Renato Botelho
|
echo gettext("Please select kernel type") , ": ";
|
283 |
77a89fb6
|
Scott Ullrich
|
echo "<select name='kerneltype'>";
|
284 |
1b4f376d
|
Vinicius Coque
|
echo "<option value='SMP'>" . gettext("Multiprocessor kernel") . "</option>";
|
285 |
|
|
echo "<option value='single'>". gettext("Uniprocessor kernel") . "</option>";
|
286 |
|
|
echo "<option value='wrap'>" . gettext("Embedded kernel") . "</option>";
|
287 |
|
|
echo "<option value='Developers'>" . gettext("Developers kernel") . "</option>";
|
288 |
77a89fb6
|
Scott Ullrich
|
echo "</select>";
|
289 |
e40d415a
|
Scott Ullrich
|
echo "<br>";
|
290 |
77a89fb6
|
Scott Ullrich
|
}
|
291 |
|
|
}
|
292 |
|
|
?>
|
293 |
afc04d58
|
Scott Ullrich
|
<?php
|
294 |
|
|
/*
|
295 |
|
|
<input name="Submit" type="submit" class="formbtn" value="Upgrade firmware" onClick="window.open('upload_progress.php?upload_id=<?=$upload_id?>','UploadMeter','width=370,height=115', true); return true;">
|
296 |
|
|
*/
|
297 |
|
|
?>
|
298 |
b2a67b55
|
Scott Ullrich
|
<input type="checkbox" name='backupbeforeupgrade' id='backupbeforeupgrade'> <?=gettext("Perform full backup prior to upgrade");?>
|
299 |
e40d415a
|
Scott Ullrich
|
<br>
|
300 |
4134b5e6
|
Carlos Eduardo Ramos
|
<input name="Submit" type="submit" class="formbtn" value="<?=gettext("Upgrade firmware");?>">
|
301 |
e40d415a
|
Scott Ullrich
|
<?=gettext('Click "Upgrade firmware" to start the upgrade process.');?>
|
302 |
77a89fb6
|
Scott Ullrich
|
<?php endif; else: ?>
|
303 |
1b4f376d
|
Vinicius Coque
|
<strong><?=gettext("You must reboot the system before you can upgrade the firmware.");?></strong>
|
304 |
77a89fb6
|
Scott Ullrich
|
<?php endif; ?>
|
305 |
|
|
</td>
|
306 |
0045dfd1
|
Scott Ullrich
|
</td>
|
307 |
77a89fb6
|
Scott Ullrich
|
</tr>
|
308 |
|
|
<tr>
|
309 |
|
|
<td width="22%" valign="top"> </td>
|
310 |
e40d415a
|
Scott Ullrich
|
<td width="78%">
|
311 |
09b964a2
|
Scott Ullrich
|
</span>
|
312 |
|
|
<?php if (is_subsystem_dirty('firmware')): ?>
|
313 |
e40d415a
|
Scott Ullrich
|
<span class="vexpl">
|
314 |
|
|
<span class="red">
|
315 |
|
|
<strong>
|
316 |
|
|
<?=gettext("Warning:");?><br>
|
317 |
|
|
</strong>
|
318 |
|
|
</span>
|
319 |
|
|
<?=gettext("DO NOT abort the firmware upgrade once it " .
|
320 |
|
|
"has started. The firewall will reboot automatically after " .
|
321 |
|
|
"storing the new firmware. The configuration will be maintained.");?>
|
322 |
|
|
</span>
|
323 |
09b964a2
|
Scott Ullrich
|
<?php endif; ?>
|
324 |
e40d415a
|
Scott Ullrich
|
</td>
|
325 |
77a89fb6
|
Scott Ullrich
|
</table>
|
326 |
e12d98ea
|
Bill Marquette
|
</div>
|
327 |
77a89fb6
|
Scott Ullrich
|
</tr>
|
328 |
222494af
|
Colin Smith
|
</table>
|
329 |
afc04d58
|
Scott Ullrich
|
|
330 |
03c64985
|
Scott Ullrich
|
<?php endif; endif; ?>
|
331 |
5b237745
|
Scott Ullrich
|
<?php include("fend.inc"); ?>
|
332 |
|
|
</body>
|
333 |
|
|
</html>
|