diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 02e0a4a11d..45b3ccb789 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py | |||
@@ -25,7 +25,7 @@ class QemuRunner: | |||
25 | self.rootfs = rootfs | 25 | self.rootfs = rootfs |
26 | 26 | ||
27 | self.streampath = '/tmp/qemuconnection.%s' % os.getpid() | 27 | self.streampath = '/tmp/qemuconnection.%s' % os.getpid() |
28 | self.qemuparams = 'bootparams="console=ttyS0" qemuparams="-serial unix:%s,server,nowait"' % self.streampath | 28 | self.qemuparams = 'bootparams="console=tty1 console=ttyS0,115200n8" qemuparams="-serial unix:%s,server,nowait"' % self.streampath |
29 | self.qemupid = None | 29 | self.qemupid = None |
30 | self.ip = None | 30 | self.ip = None |
31 | 31 | ||
@@ -76,7 +76,7 @@ class QemuRunner: | |||
76 | if not match: | 76 | if not match: |
77 | bb.note("Couldn't get prompt, all I got was:\n%s" % match.group(0)) | 77 | bb.note("Couldn't get prompt, all I got was:\n%s" % match.group(0)) |
78 | return False | 78 | return False |
79 | console.write("ip addr show eth0 | sed -n '3p' | awk '{ print $2 }' | cut -f 1 -d \"/\"\n") | 79 | console.write("ip addr show `ip route list | sed -n '1p' | awk '{print $5}'` | sed -n '3p' | awk '{ print $2 }' | cut -f 1 -d \"/\"\n") |
80 | (index, match, text) = console.expect([r"((?:[0-9]{1,3}\.){3}[0-9]{1,3})"],10) | 80 | (index, match, text) = console.expect([r"((?:[0-9]{1,3}\.){3}[0-9]{1,3})"],10) |
81 | console.close() | 81 | console.close() |
82 | if match: | 82 | if match: |