1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#ifndef H_MODULES
#define H_MODULES
#include "moduleinfo.h"
#include "moduledeps.h"
typedef struct moduleList_s * moduleList;
struct loadedModuleInfo {
char * name;
char ** args;
int weLoaded;
int written;
char * path;
int firstDevNum, lastDevNum;
enum driverMajor major;
enum driverMinor minor;
};
struct extractedModule {
char * path;
char * location;
};
struct moduleList_s {
struct loadedModuleInfo mods[50];
int numModules;
};
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);
/* like mlLoadModuleSet but from an explicit location */
/* JKFIXME: this is a hack */
int mlLoadModuleSetLocation(const char * modNames,
moduleList modLoaded, moduleDeps modDeps,
moduleInfoSet modInfo, int flags,
struct moduleBallLocation * location);
int mlModuleInList(const char * modName, moduleList list);
void writeScsiDisks(moduleList list);
#endif
|