diff options
-rwxr-xr-x | etc/rc.linkup | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/rc.linkup b/etc/rc.linkup index 395486a..f700d58 100755 --- a/etc/rc.linkup +++ b/etc/rc.linkup @@ -45,7 +45,8 @@ function handle_argument_group($iface, $argument2) { } if (!isset($config['interfaces'][$iface]['enable'])) { - log_error("Linkup detected on disabled interface...Ignoring"); + if (!platform_booting()) + log_error("Linkup detected on disabled interface...Ignoring"); return; } |