summaryrefslogtreecommitdiffstats
path: root/loader/modules.c
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-18 20:53:36 +0000
committerMatt Wilson <msw@redhat.com>1999-09-18 20:53:36 +0000
commitfd7e2327092b4bc5da4b7004c60c37e2444742ed (patch)
treeba5558f1e5297e38a36e25ff4e9953707eb512a5 /loader/modules.c
parent06736e45418803146d3a90d3537296d3da17b086 (diff)
downloadanaconda-fd7e2327092b4bc5da4b7004c60c37e2444742ed.tar.gz
anaconda-fd7e2327092b4bc5da4b7004c60c37e2444742ed.tar.xz
anaconda-fd7e2327092b4bc5da4b7004c60c37e2444742ed.zip
got device driver disk working!
Diffstat (limited to 'loader/modules.c')
-rw-r--r--loader/modules.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/loader/modules.c b/loader/modules.c
index 57b2fa11b..fb7a07c7c 100644
--- a/loader/modules.c
+++ b/loader/modules.c
@@ -200,7 +200,8 @@ int mlLoadModule(char * modName, char * path, moduleList modLoaded,
logMessage("would have insmod %s", fileName);
rc = 0;
} else {
- logMessage("going to insmod %s", fileName);
+ logMessage("going to insmod %s (path is %s)", fileName,
+ path ? path : "NULL");
rc = insmod(fileName, path, args);
}