diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-12-18 16:34:29 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-12-18 16:34:29 +0000 |
commit | cf77ef87facada4f5d738b3f44f04b32958a1804 (patch) | |
tree | 92e075ab7ed0bfcdbf5eb2282074b99f04ecaeae /loader2/driverdisk.c | |
parent | f4a6cb9a6f0c5bcc1e2c22b2d391c099644a407f (diff) | |
download | anaconda-cf77ef87facada4f5d738b3f44f04b32958a1804.tar.gz anaconda-cf77ef87facada4f5d738b3f44f04b32958a1804.tar.xz anaconda-cf77ef87facada4f5d738b3f44f04b32958a1804.zip |
it helps if we actually set the stage so that we don't keep looping through
here
Diffstat (limited to 'loader2/driverdisk.c')
-rw-r--r-- | loader2/driverdisk.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/loader2/driverdisk.c b/loader2/driverdisk.c index c3015501b..bb506da4a 100644 --- a/loader2/driverdisk.c +++ b/loader2/driverdisk.c @@ -281,8 +281,10 @@ int loadDriverFromMedia(int class, moduleList modLoaded, found = kd->numKnown; } - if (found > before) + if (found > before) { + stage = DEV_DONE; break; + } /* we don't have any more modules of the proper class. ask * them to manually load */ |