diff options
author | Mike Fulbright <msf@redhat.com> | 2000-06-14 14:49:26 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-06-14 14:49:26 +0000 |
commit | d729f8027768feff8eda09d456b054db6aa28e10 (patch) | |
tree | 3acae3b3e1d4ae1084f7750c240812c302017731 /todo.py | |
parent | 7e6b9c75899ddb819df29d9d93cf9b6c9c156604 (diff) | |
download | anaconda-d729f8027768feff8eda09d456b054db6aa28e10.tar.gz anaconda-d729f8027768feff8eda09d456b054db6aa28e10.tar.xz anaconda-d729f8027768feff8eda09d456b054db6aa28e10.zip |
always run depmod to avoid warning on first boot after install
Diffstat (limited to 'todo.py')
-rw-r--r-- | todo.py | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1433,10 +1433,14 @@ class ToDo: self.x.write (self.instPath + "/etc/X11") self.setDefaultRunlevel () + # go ahead and depmod modules on alpha, as rtc modprobe # will complain loudly if we don't do it now. - if arch == "alpha": - self.depmodModules() +# if arch == "alpha": +# self.depmodModules() + + # lets just do it always, not just on alpha + self.depmodModules() # blah. If we're on a serial mouse, and we have X, we need to # close the mouse device, then run kudzu, then open it again. |