summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/runqemu5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 1eeafa9f5b..295c8b1b60 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -1218,7 +1218,10 @@ class BaseConfig(object):
cmd = "%s %s" % (self.qemu_opt, kernel_opts)
cmds = shlex.split(cmd)
logger.info('Running %s\n' % cmd)
- process = subprocess.Popen(cmds, stderr=subprocess.PIPE)
+ pass_fds = []
+ if self.lock_descriptor:
+ pass_fds = [self.lock_descriptor.fileno()]
+ process = subprocess.Popen(cmds, stderr=subprocess.PIPE, pass_fds=pass_fds)
self.qemupid = process.pid
retcode = process.wait()
if retcode:
kernel: Bump SVN to add new ixp_npe driver fixesMichael-Luke Jones1 2006-09-24ixp4xx-kernel: Bump SVN_REV to include full debugging outputMichael-Luke Jones1 2006-09-23ixp4xx-kernel: Updated to svn repo rev after layout revert. Enanced svnpatch...Rod Whitby1 2006-09-23ixp4xx-kernel: Update to grab patches from trunkMichael-Luke Jones1 2006-09-23ixp4xx-kernel: minor SVN revbumpMichael-Luke Jones1 2006-09-22ixp4xx-kernel-2.6.18: pull patches automatically from SVNMichael-Luke Jones1 2006-09-21ixp4xx-kernel_2.6.18: General Update Michael-Luke Jones1 2006-09-13ixp4xx-kernel: Add 2.6.18 (currently -rc7)Oyvind Repvik1