diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-09-01 18:08:42 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-09-01 18:08:42 +0000 |
commit | 1ef7b568dbc875be4c2734d1e3df3fc9f0bbb747 (patch) | |
tree | bf12f5a3c920356c1ebe9b29a59918dc9949dd7f /etc/inc/globals.inc | |
parent | 9503c25e0826215c5bbb63a419c34aa902dbdd2f (diff) | |
download | pfsense-1ef7b568dbc875be4c2734d1e3df3fc9f0bbb747.zip pfsense-1ef7b568dbc875be4c2734d1e3df3fc9f0bbb747.tar.gz |
* Move lighty upload to a definable globals.inc value upload_path
* Use new upload_path for firmware updates
This in combination with 128 megabyte embedded images should fix the dreaded upgrade problem for the embedded platform.
Diffstat (limited to 'etc/inc/globals.inc')
-rw-r--r-- | etc/inc/globals.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/inc/globals.inc b/etc/inc/globals.inc index 4fdba6d..1369fd7 100644 --- a/etc/inc/globals.inc +++ b/etc/inc/globals.inc @@ -32,6 +32,7 @@ */ $g = array( + "upload_path" => "/root", "dhcpd_chroot_path" => "/var/dhcpd", "varrun_path" => "/var/run", "varetc_path" => "/var/etc", @@ -58,12 +59,12 @@ $g = array( "xmlrpcbaseurl" => "www.pfsense.com", "captiveportal_path" => "/usr/local/captiveportal", "captiveportal_element_path" => "/var/db/cpelements", - "captiveportal_element_sizelimit" => 262144, + "captiveportal_element_sizelimit" => 262144, "xmlrpcpath" => "/pfSense/xmlrpc.php", "embeddedbootupslice" => "/dev/ad0a", "wireless_regex" => "/^(ndis|wi|ath|an|ral|ural|wai|iwi|awi|wlan)/", "vlan_native_supp" => array("bfe", "dc", "fxp", "gem", "hme", "rl", "sis", "ste", "tl", "tx", "xl"), - "vlan_long_frame" => array("bfe", "bge", "dc", "em", "fxp", "gem", "hme", "ixgb", "nge", "re", "rl", "sis", "ste", "ti", "tl", "tx", "txp", "xl", "sk") + "vlan_long_frame" => array("bfe", "bge", "dc", "em", "fxp", "gem", "hme", "ixgb", "nge", "re", "rl", "sis", "ste", "ti", "tl", "tx", "txp", "xl", "sk") ); /* IP TOS flags */ |