diff options
author | Matt Wilson <msw@redhat.com> | 2000-02-05 18:58:26 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-02-05 18:58:26 +0000 |
commit | b9d3625b6bc832e990ccaced7b8f9f056c28a44e (patch) | |
tree | a278ac973b5f72f13c3bdbd3512452753ac311c8 /todo.py | |
parent | f299d4c10cb9aeecf2d96635530b3873d42df8e3 (diff) | |
download | anaconda-b9d3625b6bc832e990ccaced7b8f9f056c28a44e.tar.gz anaconda-b9d3625b6bc832e990ccaced7b8f9f056c28a44e.tar.xz anaconda-b9d3625b6bc832e990ccaced7b8f9f056c28a44e.zip |
more sparc changes
Diffstat (limited to 'todo.py')
-rw-r--r-- | todo.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -280,13 +280,14 @@ class ToDo: self.desktop = Desktop () self.ddruidReadOnly = 0 self.bootdisk = 1 - self.lilo = LiloConfiguration() # liloDevice, liloLinear, liloAppend are initialized form the # default install class arch = iutil.getArch () - if arch == "sparc": - self.silo = SiloInstall (self) + if arch == "i386": + self.lilo = LiloConfiguration() + elif arch == "sparc": + self.silo = SiloInstall (self.serial) elif arch == "alpha": self.milo = MiloInstall (self) self.timezone = None |