summaryrefslogtreecommitdiffstats
path: root/lilo.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-07-21 20:43:41 +0000
committerMike Fulbright <msf@redhat.com>2000-07-21 20:43:41 +0000
commit1a020b840ededc3b0cb8fbd03ba739a96fa02284 (patch)
treececbed15be34caf54831443bdf7f3a50e775a766 /lilo.py
parent0034ffff4cb8f0bb440ad1312a0d0a4bfed90e8e (diff)
downloadanaconda-1a020b840ededc3b0cb8fbd03ba739a96fa02284.tar.gz
anaconda-1a020b840ededc3b0cb8fbd03ba739a96fa02284.tar.xz
anaconda-1a020b840ededc3b0cb8fbd03ba739a96fa02284.zip
disable edd stuff for i386 cause it has issues on some hw
Diffstat (limited to 'lilo.py')
-rw-r--r--lilo.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/lilo.py b/lilo.py
index 3d659dca2..ef1a325f2 100644
--- a/lilo.py
+++ b/lilo.py
@@ -383,11 +383,16 @@ class LiloConfiguration:
self.initrdsMade = {}
# XXX only i386 supports edd, nothing else should
# instantiate this class
- if iutil.getArch() == "i386":
- import edd
- self.edd = edd.detect()
- else:
- self.edd = 0
+#
+# disable for now
+#
+# if iutil.getArch() == "i386":
+# import edd
+# self.edd = edd.detect()
+# else:
+# self.edd = 0
+
+ self.edd = 0
if __name__ == "__main__":
config = LiloConfigFile ()