diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-08-25 07:41:07 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-09 12:07:32 +0100 |
commit | 95331c6d4e5a478cfb7a90b91fefeac06f57a4ac (patch) | |
tree | ad89b51adac28fddd2f90f558f38434d847c33d5 | |
parent | b18f8a58f8c3d9c458640ffff322bc15d6352981 (diff) | |
download | poky-95331c6d4e5a478cfb7a90b91fefeac06f57a4ac.tar.gz |
qemurunner.py/qemutinyrunner.py: remove runqemu-internal
There is no runqemu-internal any more.
(From OE-Core rev: 14bacf7203ab7a638b67eb143225d8c75bbb703d)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/utils/qemutinyrunner.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 69a5ae1eef..2158d69400 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py | |||
@@ -375,7 +375,7 @@ class QemuRunner: | |||
375 | newparents = next | 375 | newparents = next |
376 | #print("Children matching %s:" % str(parents)) | 376 | #print("Children matching %s:" % str(parents)) |
377 | for p in parents: | 377 | for p in parents: |
378 | # Need to be careful here since runqemu-internal runs "ldd qemu-system-xxxx" | 378 | # Need to be careful here since runqemu runs "ldd qemu-system-xxxx" |
379 | # Also, old versions of ldd (2.11) run "LD_XXXX qemu-system-xxxx" | 379 | # Also, old versions of ldd (2.11) run "LD_XXXX qemu-system-xxxx" |
380 | basecmd = commands[p].split()[0] | 380 | basecmd = commands[p].split()[0] |
381 | basecmd = os.path.basename(basecmd) | 381 | basecmd = os.path.basename(basecmd) |
diff --git a/meta/lib/oeqa/utils/qemutinyrunner.py b/meta/lib/oeqa/utils/qemutinyrunner.py index 7f7489de42..d554f0dbcd 100644 --- a/meta/lib/oeqa/utils/qemutinyrunner.py +++ b/meta/lib/oeqa/utils/qemutinyrunner.py | |||
@@ -162,7 +162,7 @@ class QemuTinyRunner(QemuRunner): | |||
162 | newparents = next | 162 | newparents = next |
163 | #print("Children matching %s:" % str(parents)) | 163 | #print("Children matching %s:" % str(parents)) |
164 | for p in parents: | 164 | for p in parents: |
165 | # Need to be careful here since runqemu-internal runs "ldd qemu-system-xxxx" | 165 | # Need to be careful here since runqemu runs "ldd qemu-system-xxxx" |
166 | # Also, old versions of ldd (2.11) run "LD_XXXX qemu-system-xxxx" | 166 | # Also, old versions of ldd (2.11) run "LD_XXXX qemu-system-xxxx" |
167 | basecmd = commands[p].split()[0] | 167 | basecmd = commands[p].split()[0] |
168 | basecmd = os.path.basename(basecmd) | 168 | basecmd = os.path.basename(basecmd) |