diff options
author | California Sullivan <california.l.sullivan@intel.com> | 2017-04-21 15:18:35 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-05-11 16:59:19 +0100 |
commit | 0100bfa01c3d7bf0c1638737c18c31888bf14552 (patch) | |
tree | d24ca942f45a0003cc755c84dc3a6199ca6f98e0 /meta/lib/oeqa | |
parent | 234d0410031a00d18ca0e582260d67641362421d (diff) | |
download | poky-0100bfa01c3d7bf0c1638737c18c31888bf14552.tar.gz |
parselogs: whitelist bluetooth firmware load error for intel-corei7-64
The NUC6 has issues bringing up Bluetooth early in the boot sequence. We
see:
[ 4.091790] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 4.097326] Bluetooth: hci0: Found device firmware: intel/ibt-11-5.sfi
[ 4.145317] Bluetooth: hci0: Failed to send firmware data (-38)
Followed by this later on:
[ 11.509870] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 11.509988] Bluetooth: hci0: Found device firmware: intel/ibt-11-5.sfi
[ 13.090308] Bluetooth: hci0: Waiting for firmware download to complete
[ 13.090829] Bluetooth: hci0: Firmware loaded in 1549114 usecs
[ 13.090987] Bluetooth: hci0: Waiting for device to boot
[ 13.101958] Bluetooth: hci0: Device booted in 10818 usecs
Bluetooth does successfully come up and the firmware is loaded. This
behavior is consistent across all kernels I've tested.
[YOCTO #10628].
(From OE-Core rev: 045ee89342ea8ce16e78fea9f1c73d978d66a337)
Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/parselogs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py index 6e929469c4..8a9231f95d 100644 --- a/meta/lib/oeqa/runtime/cases/parselogs.py +++ b/meta/lib/oeqa/runtime/cases/parselogs.py | |||
@@ -151,6 +151,7 @@ ignore_errors = { | |||
151 | 'failed to read out thermal zone', | 151 | 'failed to read out thermal zone', |
152 | 'Bluetooth: hci0: Setting Intel event mask failed', | 152 | 'Bluetooth: hci0: Setting Intel event mask failed', |
153 | 'ttyS2 - failed to request DMA', | 153 | 'ttyS2 - failed to request DMA', |
154 | 'Bluetooth: hci0: Failed to send firmware data (-38)', | ||
154 | ] + x86_common, | 155 | ] + x86_common, |
155 | 'crownbay' : x86_common, | 156 | 'crownbay' : x86_common, |
156 | 'genericx86' : x86_common, | 157 | 'genericx86' : x86_common, |