summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-08-22 16:44:13 +0000
committerJeremy Katz <katzj@redhat.com>2002-08-22 16:44:13 +0000
commit5738d24adffa12e51d46be2ba03e020bce76be07 (patch)
tree186f294de1a004293e49b3651647cc4db242fee6
parent0862729637cc77ddc89eec86d7d275e60284fcfa (diff)
downloadanaconda-5738d24adffa12e51d46be2ba03e020bce76be07.tar.gz
anaconda-5738d24adffa12e51d46be2ba03e020bce76be07.tar.xz
anaconda-5738d24adffa12e51d46be2ba03e020bce76be07.zip
move the newt start to just before we need it
-rw-r--r--loader/loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/loader.c b/loader/loader.c
index f2d860046..4edc34dc0 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -3042,6 +3042,7 @@ static int firewireInitialize(moduleList modLoaded, moduleDeps modDeps,
logMessage("found firewire controller %s", devices[0]->driver);
+ startNewt(flags);
/* not the best message in the world, but better than sitting
* and looking silly */
winStatus(40, 3, _("Loading"), _("Loading %s driver..."),
@@ -3403,7 +3404,6 @@ int main(int argc, char ** argv) {
a system w/o USB keyboard support, which would be bad. */
usbInitialize(modLoaded, modDeps, modInfo, flags);
- startNewt(flags);
/* now let's initialize any possible firewire. fun */
firewireInitialize(modLoaded, modDeps, modInfo, flags);
}