From 3c61530f837656a87543c258f3353c961a0f94a1 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sat, 11 Nov 2006 21:54:07 +0000 Subject: Do not complain unless user has less than 126 megs of ram. Some motherboards share ram with video cards. --- etc/rc.bootup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc/rc.bootup') 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); } -- cgit v1.1