summaryrefslogtreecommitdiffstats
path: root/loader2/modules.h
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-12-11 05:18:06 +0000
committerJeremy Katz <katzj@redhat.com>2002-12-11 05:18:06 +0000
commit6e06b21470f7396c51a9e36559cc10ae2e0e9189 (patch)
treec6b649821088e70012a459b867e469063e77b318 /loader2/modules.h
parentd1fae4e5af5fff2fb6f577d1f2e45a9631311623 (diff)
downloadanaconda-6e06b21470f7396c51a9e36559cc10ae2e0e9189.tar.gz
anaconda-6e06b21470f7396c51a9e36559cc10ae2e0e9189.tar.xz
anaconda-6e06b21470f7396c51a9e36559cc10ae2e0e9189.zip
* add a usecancel param for the driver disk dialog so we can use it even if
back doesn't make any sense * make sure we got new drivers that we care about from the driver disk * manual driver selection and loading (with arbitrary args) * lots of stuff to get noprobe mostly working
Diffstat (limited to 'loader2/modules.h')
-rw-r--r--loader2/modules.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/loader2/modules.h b/loader2/modules.h
index 9e055ee84..90cb92bd0 100644
--- a/loader2/modules.h
+++ b/loader2/modules.h
@@ -28,6 +28,9 @@ struct moduleList_s {
};
int mlReadLoadedList(moduleList * mlp);
+int mlLoadModule(const char * module, moduleList modLoaded,
+ moduleDeps modDeps, moduleInfoSet modInfo,
+ char ** args, int flags);
int mlLoadModuleSet(const char * modNames,
moduleList modLoaded, moduleDeps modDeps,
moduleInfoSet modInfo, int flags);
@@ -38,6 +41,6 @@ int mlLoadModuleSetLocation(const char * modNames,
moduleInfoSet modInfo, int flags,
struct moduleBallLocation * location);
-
+int mlModuleInList(const char * modName, moduleList list);
#endif