summaryrefslogtreecommitdiffstats
path: root/etc/rc.bootup
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-11-11 21:54:07 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-11-11 21:54:07 +0000
commit3c61530f837656a87543c258f3353c961a0f94a1 (patch)
tree878f1bd81b6b85d9cf3f1f53ae8e838b3d4261ba /etc/rc.bootup
parent6a01ea44fbb8ed7144eed374a77681f32cf17cac (diff)
downloadpfsense-3c61530f837656a87543c258f3353c961a0f94a1.zip
pfsense-3c61530f837656a87543c258f3353c961a0f94a1.tar.gz
Do not complain unless user has less than 126 megs of ram. Some motherboards share ram with video cards.
Diffstat (limited to 'etc/rc.bootup')
-rwxr-xr-xetc/rc.bootup2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.bootup b/etc/rc.bootup
index 74ba448..dd2815c 100755
--- a/etc/rc.bootup
+++ b/etc/rc.bootup
@@ -300,7 +300,7 @@
if($config['system']['afterbootupshellcmd'] <> "")
mwexec($config['system']['afterbootupshellcmd']);
- if($avail < 128) {
+ if($avail < 126) {
require_once("notices.inc");
file_notice("pfSenseMemoryRequirements", "pfSense requires atleast 128 megabytes of RAM. Expect unusual performance. This platform is not supported.", "Memory", "", 1);
}
OpenPOWER on IntegriCloud