summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2010-08-14 15:48:20 -0400
committerScott Ullrich <sullrich@pfsense.org>2010-08-14 15:48:20 -0400
commit18a4c6c52db8fea0c1d68638cc2af832c5b59259 (patch)
tree4806b6f12bb8839f71e708690eeaf76ca6fcf72e /usr
parentf988d2d9d93bdfd7c704dba250509816249ed20a (diff)
downloadpfsense-18a4c6c52db8fea0c1d68638cc2af832c5b59259.zip
pfsense-18a4c6c52db8fea0c1d68638cc2af832c5b59259.tar.gz
Add UFS+S (Soft-updates)
Diffstat (limited to 'usr')
-rw-r--r--usr/local/www/installer.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr/local/www/installer.php b/usr/local/www/installer.php
index 9607116..de51873 100644
--- a/usr/local/www/installer.php
+++ b/usr/local/www/installer.php
@@ -56,7 +56,7 @@ switch ($_REQUEST['state']) {
installer_main();
}
-function write_out_pc_sysinstaller_config($disk, $fstype = "ufs") {
+function write_out_pc_sysinstaller_config($disk, $fstype = "UFS+S") {
$fd = fopen("/PCBSD/pc-sysinstall/examples/pfSense-install.cfg", "w");
if(!$fd) {
return true;
@@ -579,9 +579,10 @@ EOF;
$custom_txt .= "</select><p/>\n";
// Prepare disk types
$custom_txt .= "Filesystem type: <select name='fstype'>\n";
- $custom_txt .= "<option value='ufs'>UFS</option>\n";
+ $custom_txt .= "<option value='UFS'>UFS</option>\n";
+ $custom_txt .= "<option value='UFS+S'>UFS + Softupdates</option>\n";
if(file_exists("/boot/gptzfsboot"))
- $custom_txt .= "<option value='zfs'>ZFS</option>\n";
+ $custom_txt .= "<option value='ZFS'>ZFS</option>\n";
$custom_txt .= "</select>\n";
}
echo <<<EOF
OpenPOWER on IntegriCloud