From fe7720f050fea4add0f133f5e52d201821fbbd38 Mon Sep 17 00:00:00 2001 From: bbruns Date: Sat, 12 Apr 2014 15:14:54 +0000 Subject: [PATCH] --- lib/kernel.inc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/kernel.inc b/lib/kernel.inc index 13fa76c..d336904 100644 --- a/lib/kernel.inc +++ b/lib/kernel.inc @@ -19,10 +19,12 @@ # along with this program. If not, see . function load_kernel_modules { - LOAD_MODULES=$2 + LOAD_MODULES=$1 ${debug} ${DebugColor} "${FUNCNAME}:${DEFAULT_COLOR} loading" + ${debug} ${DebugColor} "${FUNCNAME}:${DEFAULT_COLOR} Loading kernel module:" N for i in $LOAD_MODULES; do - ${debug} ${DebugColor} "${FUNCNAME}:${DEFAULT_COLOR} Loading kernel module ${i}..." + ${debug} ${DebugColor} "${i} " N ${MODPROBE} ${i} done + ${debug} ${DebugColor} "\n${FUNCNAME}:${DEFAULT_COLOR} done." } \ No newline at end of file