summaryrefslogtreecommitdiffstats
path: root/usr/local
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2010-12-19 15:22:43 -0500
committerScott Ullrich <sullrich@pfsense.org>2010-12-19 15:22:43 -0500
commitba0c3651cb6ee161b7edbb951ae7754c46db6975 (patch)
tree2394b1aeed216bf604ae350b9b2f6fc1a0fb8c95 /usr/local
parent8206c01d5fa94b449980ef94f821a938df32567e (diff)
downloadpfsense-ba0c3651cb6ee161b7edbb951ae7754c46db6975.zip
pfsense-ba0c3651cb6ee161b7edbb951ae7754c46db6975.tar.gz
Save boot manager selection when returning to previous screens
Diffstat (limited to 'usr/local')
-rw-r--r--usr/local/www/installer/installer.php21
1 files changed, 15 insertions, 6 deletions
diff --git a/usr/local/www/installer/installer.php b/usr/local/www/installer/installer.php
index c27bcfe..ce75975 100644
--- a/usr/local/www/installer/installer.php
+++ b/usr/local/www/installer/installer.php
@@ -437,13 +437,15 @@ function verify_before_install() {
// then load the on disk layout contents if they are available.
if(!$_REQUEST['fstype0'] && file_exists("/tmp/webInstaller_disk_layout.txt")) {
$disks = unserialize(file_get_contents("/tmp/webInstaller_disk_layout.txt"));
+ $bootmanager = unserialize(file_get_contents("/tmp/webInstaller_disk_bootmanager.txt"));
$restored_layout_from_file = true;
$restored_layout_txt = "The previous disk layout was restored from disk";
}
+ if(!$bootmanager)
+ $bootmanager = $_REQUEST['bootmanager'];
echo "\n<!--" . print_r($_REQUEST, true) . " -->\n";
$disk = pcsysinstall_get_disk_info(htmlspecialchars($_REQUEST['disk']));
$disksize = format_bytes($disk['size'] * 1048576);
- $bootmanager = htmlspecialchars($_REQUEST['bootmanager']);
$disks = array();
// Loop through posted items and create an array
for($x=0; $x<99; $x++) { // XXX: Make this more optimal
@@ -569,7 +571,7 @@ EOFAMBASDF;
end_html();
write_out_pc_sysinstaller_config($disks, $bootmanager);
file_put_contents("/tmp/webInstaller_disk_layout.txt", serialize($disks));
-
+ file_put_contents("/tmp/webInstaller_disk_bootmanager.txt", serialize($bootmanager));
}
function installing_gui() {
@@ -745,6 +747,13 @@ function installer_custom() {
EOF;
ob_flush();
$disks = installer_find_all_disks();
+ if(file_exists("/tmp/webInstaller_disk_bootmanager.txt"))
+ $bootmanager = unserialize(file_get_contents("/tmp/webInstaller_disk_bootmanager.txt"));
+ if($bootmanager == "none")
+ $noneselected = " SELECTED";
+ if($bootmanager == "bsd")
+ $bsdeselected = " SELECTED";
+
if(!$disks) {
$custom_txt = gettext("ERROR: Could not find any suitable disks for installation.");
} else {
@@ -758,10 +767,10 @@ EOF;
</td>
<td>
<select name='bootmanager'>
- <option value='none'>
+ <option value='none' $noneselected>
None
</option>
- <option value='bsd'>
+ <option value='bsd' $bsdeselected>
BSD
</option>
</select>
@@ -914,8 +923,8 @@ function installer_main() {
body_html();
$disk = installer_find_first_disk();
// Only enable ZFS if this exists. The install will fail otherwise.
-// if(file_exists("/boot/gptzfsboot"))
-// $zfs_enabled = "<tr bgcolor=\"#9A9A9A\"><td align=\"center\"><a href=\"installer.php?state=verify_before_install&fstype0=ZFS&size=200M\">Easy installation of {$g['product_name']} using the ZFS filesystem on disk {$disk}</a></td></tr>";
+ // if(file_exists("/boot/gptzfsboot"))
+ // $zfs_enabled = "<tr bgcolor=\"#9A9A9A\"><td align=\"center\"><a href=\"installer.php?state=verify_before_install&fstype0=ZFS&size=200M\">Easy installation of {$g['product_name']} using the ZFS filesystem on disk {$disk}</a></td></tr>";
page_table_start();
echo <<<EOF
<form action="installer.php" method="post" state="step1_post">
OpenPOWER on IntegriCloud