diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-01 13:27:25 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:10:04 +0100 |
commit | 28a0030430d4cfcaf5dfc3e71bda07cdbfbbf4a7 (patch) | |
tree | aa68bca6934317882c089144ce9922abf608bb52 /meta/lib | |
parent | eaf83a58825d91c7445835b27d843da7532c208b (diff) | |
download | openembedded-core-28a0030430d4cfcaf5dfc3e71bda07cdbfbbf4a7.tar.gz openembedded-core-28a0030430d4cfcaf5dfc3e71bda07cdbfbbf4a7.tar.bz2 openembedded-core-28a0030430d4cfcaf5dfc3e71bda07cdbfbbf4a7.zip |
qemurunner: Use surrogateescape decoding
Since the stream can contain invalid binary characters (e.g. from
ppc's bootloader) use surrogateescape decoding to ensure we do process
the character stream, else it can hang/timeout.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index e408fbbf3a..b8ac3f0bb6 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py @@ -234,7 +234,7 @@ class QemuRunner: data = data + sock.recv(1024) if data: try: - data = data.decode("utf-8") + data = data.decode("utf-8", errors="surrogateescape") bootlog += data data = b'' if re.search(".* login:", bootlog): |