summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-02-05 22:06:58 +0000
committerBill Nottingham <notting@redhat.com>2001-02-05 22:06:58 +0000
commitba977d5b28299df9022be7d8a337ec5ea4355d3d (patch)
tree9ad34a5ca31456187825a3900766053b630aff4e /loader
parent7ca51f789c5fc342ca2211bf515242307e77f432 (diff)
downloadanaconda-ba977d5b28299df9022be7d8a337ec5ea4355d3d.tar.gz
anaconda-ba977d5b28299df9022be7d8a337ec5ea4355d3d.tar.xz
anaconda-ba977d5b28299df9022be7d8a337ec5ea4355d3d.zip
ignore 'disabled' stuff too
Diffstat (limited to 'loader')
-rw-r--r--loader/loader.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/loader/loader.c b/loader/loader.c
index 97419a99d..d62a4a44e 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -242,7 +242,8 @@ static int detectHardware(moduleInfoSet modInfo,
for (device = devices; *device; device++) {
driver = (*device)->driver;
- if (strcmp (driver, "ignore") && strcmp (driver, "unknown")) {
+ if (strcmp (driver, "ignore") && strcmp (driver, "unknown")
+ && strcmp (driver, "disabled")) {
logMessage("found suggestion of %s", driver);
if ((mod = isysFindModuleInfo(modInfo, driver))) {
logMessage("found %s device", driver);