summaryrefslogtreecommitdiffstats
path: root/loader/modules.c
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-10-17 01:08:49 +0000
committerErik Troan <ewt@redhat.com>2001-10-17 01:08:49 +0000
commitbdeda4d7a12d6315da83f1dccfe1c587d7b86eca (patch)
treebd0fbd9480f9c81d719c2269d8ae5f6fd4aaadb2 /loader/modules.c
parent9433df5a14f77970c2268397358642136902ad14 (diff)
downloadanaconda-bdeda4d7a12d6315da83f1dccfe1c587d7b86eca.tar.gz
anaconda-bdeda4d7a12d6315da83f1dccfe1c587d7b86eca.tar.xz
anaconda-bdeda4d7a12d6315da83f1dccfe1c587d7b86eca.zip
don't give up after one module insertion fails
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 1f9b1d3cd..80cd5c299 100644
--- a/loader/modules.c
+++ b/loader/modules.c
@@ -312,6 +312,7 @@ static int loadModule(const char * modName, char * path, moduleList modLoaded,
}
if (mi->major == DRIVER_SCSI) {
+ startNewt(flags);
scsiWindow(modName);
popWindow = 1;
}
@@ -477,7 +478,7 @@ int mlLoadModuleSet(const char * origModNames,
if (loadModule(*l, *p, modLoaded,
!strcmp(initialList[0], *l) ? args : NULL,
modInfo, flags)) {
- logMessage("failed to insert %s -- bailing\n", *p);
+ logMessage("failed to insert %s\n", *p);
i++;
}
}