diff options
author | Erik Troan <ewt@redhat.com> | 2001-01-08 19:43:14 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2001-01-08 19:43:14 +0000 |
commit | 59e6bf48a1bc882b90413df36f0ef30f8aeea1b9 (patch) | |
tree | d54d07b3549aabab2f836c2f4588e6725dd06b4f /installclasses | |
parent | b0fbcd6a577badf6a63dc3b254586e34a8957eb2 (diff) | |
download | anaconda-59e6bf48a1bc882b90413df36f0ef30f8aeea1b9.tar.gz anaconda-59e6bf48a1bc882b90413df36f0ef30f8aeea1b9.tar.xz anaconda-59e6bf48a1bc882b90413df36f0ef30f8aeea1b9.zip |
need to be able to detect pcmcia controller existence to know if laptop
installs should be the default
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/laptop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installclasses/laptop.py b/installclasses/laptop.py index 3fe042a28..07294a99d 100644 --- a/installclasses/laptop.py +++ b/installclasses/laptop.py @@ -9,7 +9,7 @@ class InstallClass(workstation.InstallClass): sortPriority = 5000 - if pcmcia.pcicType(): + if pcmcia.hasPcmcia(): default = 1 def __init__(self, expert): |