summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-05-03 17:05:56 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-05-03 17:05:56 +0000
commit784bb52cd1cb6bad2bd2e0e3b0f57bafb478e0fc (patch)
treeba275c08987735cf51b95f04f402199a611b1e17
parent6e6cccb09e0b91bf5efa4edf93bde5643c154c34 (diff)
downloadanaconda-784bb52cd1cb6bad2bd2e0e3b0f57bafb478e0fc.tar.gz
anaconda-784bb52cd1cb6bad2bd2e0e3b0f57bafb478e0fc.tar.xz
anaconda-784bb52cd1cb6bad2bd2e0e3b0f57bafb478e0fc.zip
Screw the s390
-rw-r--r--ChangeLog5
-rw-r--r--lvm.py3
2 files changed, 0 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 5cb8738a1..8211bd904 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,3 @@
-2006-05-03 David Cantrell <dcantrell@redhat.com>
-
- * lvm.py (has_lvm): Return if we're on S/390 and don't see a
- /proc/devices file.
-
2006-05-01 Jeremy Katz <katzj@redhat.com>
* loader2/nfsinstall.c Add support for passing nfs mount options
diff --git a/lvm.py b/lvm.py
index f51de201c..43e533ca0 100644
--- a/lvm.py
+++ b/lvm.py
@@ -35,9 +35,6 @@ def has_lvm():
os.access("/sbin/lvm", os.X_OK)):
return
- if iutil.getArch() == "s390" and not os.access("/proc/devices", os.R_OK):
- return
-
f = open("/proc/devices", "r")
lines = f.readlines()
f.close()