From 461fcf077587465d4894541d19ae028a75f89aa6 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Wed, 15 Jul 2009 21:44:07 -0400 Subject: [PATCH] Do not allow muting of serial + full install --- etc/inc/config.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/inc/config.inc b/etc/inc/config.inc index 9141d0d70b..f0cc1ee7ec 100644 --- a/etc/inc/config.inc +++ b/etc/inc/config.inc @@ -1820,6 +1820,8 @@ function mute_kernel_msgs() { // and will start dishing you cannot control tty errors. if(trim(file_get_contents("/etc/platform")) == "nanobsd") return; + if($config['system']['enableserial']) + return; exec("/sbin/conscontrol mute on"); }