From 629a41a21d6b76ff33b1f3542cb85b386ef6b8a2 Mon Sep 17 00:00:00 2001 From: Erik Troan Date: Thu, 21 Dec 2000 16:39:34 +0000 Subject: copy kernel drivers to the right place --- todo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'todo.py') 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)) -- cgit