summaryrefslogtreecommitdiffstats
path: root/lilo.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-07-25 03:20:07 +0000
committerMike Fulbright <msf@redhat.com>2000-07-25 03:20:07 +0000
commit7802297718ef5397c5c6e870d3bcdbc97017a20a (patch)
treeeb23c11e6fb2f9310708c25944c876973b30bb3d /lilo.py
parent911303a073c2acf645f4c02d733605280afcc5c7 (diff)
downloadanaconda-7802297718ef5397c5c6e870d3bcdbc97017a20a.tar.gz
anaconda-7802297718ef5397c5c6e870d3bcdbc97017a20a.tar.xz
anaconda-7802297718ef5397c5c6e870d3bcdbc97017a20a.zip
put edd support back, its disabled elsewhere
Diffstat (limited to 'lilo.py')
-rw-r--r--lilo.py15
1 files changed, 5 insertions, 10 deletions
diff --git a/lilo.py b/lilo.py
index 451f45529..e1f106185 100644
--- a/lilo.py
+++ b/lilo.py
@@ -385,16 +385,11 @@ class LiloConfiguration:
self.initrdsMade = {}
# XXX only i386 supports edd, nothing else should
# instantiate this class
-#
-# disable for now
-#
-# if iutil.getArch() == "i386":
-# import edd
-# self.edd = edd.detect()
-# else:
-# self.edd = 0
-
- self.edd = 0
+ if iutil.getArch() == "i386":
+ import edd
+ self.edd = edd.detect()
+ else:
+ self.edd = 0
if __name__ == "__main__":
config = LiloConfigFile ()