diff options
author | Mike Fulbright <msf@redhat.com> | 2000-07-25 03:20:07 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-07-25 03:20:07 +0000 |
commit | 7802297718ef5397c5c6e870d3bcdbc97017a20a (patch) | |
tree | eb23c11e6fb2f9310708c25944c876973b30bb3d /lilo.py | |
parent | 911303a073c2acf645f4c02d733605280afcc5c7 (diff) | |
download | anaconda-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.py | 15 |
1 files changed, 5 insertions, 10 deletions
@@ -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 () |