summaryrefslogtreecommitdiffstats
path: root/network.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2009-10-28 14:49:11 -1000
committerDavid Cantrell <dcantrell@redhat.com>2009-10-28 17:08:12 -1000
commit922b82c3628986284eb33f10a18ea655a42155ef (patch)
treed7c4bb20fe201af966af4b17641b36e78362fba4 /network.py
parentcc7d403c2c338c0d71de0bca8ff9b316b336a6b2 (diff)
downloadanaconda-922b82c3628986284eb33f10a18ea655a42155ef.tar.gz
anaconda-922b82c3628986284eb33f10a18ea655a42155ef.tar.xz
anaconda-922b82c3628986284eb33f10a18ea655a42155ef.zip
Remove support for IUCV networking devices on s390. (#531494)
CONFIG_NETIUCV has been disabled in the kernel, so remove support for these devices during installation.
Diffstat (limited to 'network.py')
-rw-r--r--network.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/network.py b/network.py
index d8cbedfff..033725004 100644
--- a/network.py
+++ b/network.py
@@ -125,7 +125,7 @@ def getDefaultHostname(anaconda):
# return if the device is of a type that requires a ptpaddr to be specified
def isPtpDev(devname):
- if (devname.startswith("ctc") or devname.startswith("iucv")):
+ if devname.startswith("ctc"):
return True
return False
@@ -261,8 +261,6 @@ class NetworkDevice(SimpleConfigFile):
self.info = { "DEVICE" : dev }
if dev.startswith('ctc'):
self.info["TYPE"] = "CTC"
- elif dev.startswith('iucv'):
- self.info["TYPE"] = "IUCV"
class Network:
def __init__(self):