diff options
author | Erik Troan <ewt@redhat.com> | 1999-09-18 16:12:05 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-09-18 16:12:05 +0000 |
commit | ecbf41b007a8e95394e67d56051b0fcaf9af572c (patch) | |
tree | e74b9c1cc668f11ed1a054f7caf2ef7651e1dcab /loader/modules.h | |
parent | e6f692d2ca3c95d0b86253a473c0acf21ce69bcb (diff) | |
download | anaconda-ecbf41b007a8e95394e67d56051b0fcaf9af572c.tar.gz anaconda-ecbf41b007a8e95394e67d56051b0fcaf9af572c.tar.xz anaconda-ecbf41b007a8e95394e67d56051b0fcaf9af572c.zip |
first pass at supporting driver disks -- NOT done yet
Diffstat (limited to 'loader/modules.h')
-rw-r--r-- | loader/modules.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/loader/modules.h b/loader/modules.h index a4afcd423..f8a494014 100644 --- a/loader/modules.h +++ b/loader/modules.h @@ -8,6 +8,7 @@ struct loadedModuleInfo { char * name; char ** args; int weLoaded; + char * path; }; struct moduleList_s { @@ -19,7 +20,7 @@ int mlReadLoadedList(moduleList * list); void mlFreeList(moduleList list); int mlLoadDeps(moduleDeps * moduleDepList, const char * path); moduleDeps mlNewDeps(void); -int mlLoadModule(char * modName, moduleList modLoaded, +int mlLoadModule(char * modName, char * path, moduleList modLoaded, moduleDeps modDeps, char ** args, int flags); char ** mlGetDeps(moduleDeps modDeps, const char * modName); int mlModuleInList(const char * modName, moduleList list); |