summaryrefslogtreecommitdiffstats
path: root/loader2/hardware.h
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-11-22 00:12:14 +0000
committerJeremy Katz <katzj@redhat.com>2003-11-22 00:12:14 +0000
commit91e7edf0bfe395d7a39e18a4bac56a98f9f59266 (patch)
treed4b16e3f496f5f094c3f426e5f58899f70166fe8 /loader2/hardware.h
parent2eb8babb2d31a6ca7716a9108aeed29ed06f2b63 (diff)
downloadanaconda-91e7edf0bfe395d7a39e18a4bac56a98f9f59266.tar.gz
anaconda-91e7edf0bfe395d7a39e18a4bac56a98f9f59266.tar.xz
anaconda-91e7edf0bfe395d7a39e18a4bac56a98f9f59266.zip
switch to using kudzu's probeDevices() instead of the isys knownDevices
list everywhere. stop passing around kd. link with libpci_loader (built with diet) on diet arches to avoid dirent incompatibilities
Diffstat (limited to 'loader2/hardware.h')
-rw-r--r--loader2/hardware.h16
1 files changed, 5 insertions, 11 deletions
diff --git a/loader2/hardware.h b/loader2/hardware.h
index 5b3ed14f5..7d20172d6 100644
--- a/loader2/hardware.h
+++ b/loader2/hardware.h
@@ -2,7 +2,6 @@
#define LOADERHW_H
#include "modules.h"
-#include "../isys/probe.h"
int canProbeDevices(void);
@@ -13,21 +12,16 @@ int scsiTapeInitialize(moduleList modLoaded, moduleDeps modDeps,
void initializeParallelPort(moduleList modLoaded, moduleDeps modDeps,
moduleInfoSet modInfo, int flags);
-void updateKnownDevices(struct knownDevices * kd);
int earlyModuleLoad(moduleInfoSet modInfo, moduleList modLoaded,
- moduleDeps modDeps, int justProbe,
- struct knownDevices * kd, int flags);
+ moduleDeps modDeps, int justProbe, int flags);
int busProbe(moduleInfoSet modInfo, moduleList modLoaded, moduleDeps modDeps,
- int justProbe, struct knownDevices * kd, int flags);
+ int justProbe, int flags);
void scsiSetup(moduleList modLoaded, moduleDeps modDeps,
- moduleInfoSet modInfo, int flags,
- struct knownDevices * kd);
+ moduleInfoSet modInfo, int flags);
void ideSetup(moduleList modLoaded, moduleDeps modDeps,
- moduleInfoSet modInfo, int flags,
- struct knownDevices * kd);
+ moduleInfoSet modInfo, int flags);
void dasdSetup(moduleList modLoaded, moduleDeps modDeps,
- moduleInfoSet modInfo, int flags,
- struct knownDevices * kd);
+ moduleInfoSet modInfo, int flags);
#endif