summaryrefslogtreecommitdiffstats
path: root/todo.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-12-21 16:39:34 +0000
committerErik Troan <ewt@redhat.com>2000-12-21 16:39:34 +0000
commit629a41a21d6b76ff33b1f3542cb85b386ef6b8a2 (patch)
treec16ed9dc4bd8af6b42f51a1f2687fa71aaad529d /todo.py
parentcdcdbca1117576fb82617021416df938e8f24927 (diff)
downloadanaconda-629a41a21d6b76ff33b1f3542cb85b386ef6b8a2.tar.gz
anaconda-629a41a21d6b76ff33b1f3542cb85b386ef6b8a2.tar.xz
anaconda-629a41a21d6b76ff33b1f3542cb85b386ef6b8a2.zip
copy kernel drivers to the right place
Diffstat (limited to 'todo.py')
-rw-r--r--todo.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/todo.py b/todo.py
index 796bbaebd..6362f87c6 100644
--- a/todo.py
+++ b/todo.py
@@ -554,7 +554,7 @@ class ToDo:
"--device",
"/dev/" + self.fdDevice,
kernelTag[1:] ],
- stdout = None, stderr = None,
+ stdout = '/dev/tty5', stderr = '/dev/tty5',
searchPath = 1, root = self.instPath)
w.pop()
if rc:
@@ -1428,8 +1428,8 @@ class ToDo:
for n in kernelVersions:
fromFile = "%s/lib/modules/%s/%s.o" % (self.instPath, n, name)
- to = "%s/lib/modules/%s/%s/%s.o" % (self.instPath, n,
- subdir, name)
+ to = "%s/lib/modules/%s/kernel/drivers%s/%s.o" % \
+ (self.instPath, n, subdir, name)
if (os.access(fromFile, os.R_OK)):
log("copying %s to %s" % (fromFile, to))