diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-28 07:07:34 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-28 07:07:34 +0000 |
commit | be6d32f60831e6da5f5c1d1b5de2cd2febdc39f4 (patch) | |
tree | 5a0ce3bc18bfb91047cd7d0daf9874cdcc9a9fad | |
parent | 3671a776a69c6cfbe26b6b6d73153753edc90a39 (diff) | |
download | anaconda-be6d32f60831e6da5f5c1d1b5de2cd2febdc39f4.tar.gz anaconda-be6d32f60831e6da5f5c1d1b5de2cd2febdc39f4.tar.xz anaconda-be6d32f60831e6da5f5c1d1b5de2cd2febdc39f4.zip |
sparc fixes
-rw-r--r-- | silo.py | 2 | ||||
-rw-r--r-- | todo.py | 6 |
2 files changed, 6 insertions, 2 deletions
@@ -1,6 +1,6 @@ import string import os -import lilo +from lilo import LiloConfiguration import _silo class SiloInstall: @@ -1558,7 +1558,11 @@ class ToDo: if (self.instClass.defaultRunlevel): self.initlevel = self.instClass.defaultRunlevel self.setDefaultRunlevel () - pcmcia.createPcmciaConfig(self.instPath + "/etc/sysconfig/pcmcia") + arch = iutil.getArch () + + # pcmcia is supported only on i386 at the moment + if arch == "i386": + pcmcia.createPcmciaConfig(self.instPath + "/etc/sysconfig/pcmcia") self.copyConfModules () if not self.x.skip and self.x.server: self.x.write (self.instPath + "/etc/X11/XF86Config") |