diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-08-14 02:00:12 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-08-14 02:00:12 +0000 |
commit | c540e134193f9759873ced09b0156c6219983101 (patch) | |
tree | b36013fe219e6c3d8762bf2a0a32b538ac5c0373 /loader2/modules.c | |
parent | 3f01dfc8e9d6b8bf25b79b1cbda94ca0ff4ada09 (diff) | |
download | anaconda-c540e134193f9759873ced09b0156c6219983101.tar.gz anaconda-c540e134193f9759873ced09b0156c6219983101.tar.xz anaconda-c540e134193f9759873ced09b0156c6219983101.zip |
merge from taroon-branch. all kinds of miscellaneous bugfixes, including
* firewall update
* iSeries PReP size
* ppc mediacheck
* tzdata stuff
* cmdline mode
* pkg defaults screen
Diffstat (limited to 'loader2/modules.c')
-rw-r--r-- | loader2/modules.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/loader2/modules.c b/loader2/modules.c index dbe9e8c98..927fbc834 100644 --- a/loader2/modules.c +++ b/loader2/modules.c @@ -268,9 +268,11 @@ static int loadModule(const char * modName, struct extractedModule * path, if (mi->major == DRIVER_SCSI) { deviceCount = scsiDiskCount(); - startNewt(flags); - scsiWindow(modName); - popWindow = 1; + if (!FL_CMDLINE(flags)) { + startNewt(flags); + scsiWindow(modName); + popWindow = 1; + } } } |