Skip to content

[PW_SID:1151119] MT7925 (0e8d:0717): HFP microphone unusable — firmware delivers zero-filled (e)SCO frames on sentinel handle 0x0E00 - #647

Open
BluezTestBot wants to merge 6 commits into
workflowfrom
1151119
Open

[PW_SID:1151119] MT7925 (0e8d:0717): HFP microphone unusable — firmware delivers zero-filled (e)SCO frames on sentinel handle 0x0E00#647
BluezTestBot wants to merge 6 commits into
workflowfrom
1151119

Conversation

@BluezTestBot

Copy link
Copy Markdown

Hi,

I am reporting a hands-free (HFP) microphone failure on the MediaTek MT7925
(RZ717) USB Bluetooth controller, with evidence that points at the
controller firmware's synchronous-audio receive path. I can reproduce this
at will and am happy to test patches or capture further traces.

Hardware / software

  • Controller: MediaTek MT7925 (RZ717), USB 0e8d:0717, on an ASRock X870
    Pro RS WiFi desktop board (module is the stock M.2 combo card)
  • Kernel: 7.2.0-1-cachyos (happy to reproduce on mainline if needed)
  • BT firmware: BT_RAM_CODE_MT7925_1_1_hdr.bin from linux-firmware
    20260810 (build 20260605...); 20260622 behaves identically
  • BlueZ 5.87, PipeWire 1.6.8 / WirePlumber 0.5.15 (native HFP backend)
  • Failing headset: Huawei FreeClip 2 (BT 6.0, LE-Audio-first design,
    classic HFP fallback)
  • Control headset: Motorola moto buds+ — mSBC HFP microphone works
    perfectly on the same adapter and stack
  • The failing headset's microphone works fine on macOS (Broadcom
    controller) and on phones, so the headset side is functional

Symptom (stock kernel)

A2DP works. On switching to the HFP profile, codec negotiation succeeds
(AT+BCS=2), Setup Synchronous Connection completes with Status: Success
(eSCO, Air mode Transparent, 60-byte packets), but no microphone audio
ever reaches userspace. dmesg fills with:

Bluetooth: hci0: corrupted SCO packet
Bluetooth: hci0: SCO packet for unknown connection handle 3584
Bluetooth: hci0: ACL packet for unknown connection handle 3837

Note 3584 = 0x0E00 and 3837 = 0x0EFD. The 0x0EFD ACL traffic matches what
was identified in bugzilla #220564 as firmware-generated diag data on a
pseudo-handle; the SCO flavor appears to be unhandled.

Analysis (btmon capture attached)

The attached btsnoop capture shows the defect at its origin: after Setup
Synchronous Connection on the BR-ACL link (handle 51), a retried setup is
rejected with Command Status 0x20 (Unsupported LMP Parameter Value), and
then the controller delivers:

> HCI Event: Synchronous Connect Complete
    Status: Success (0x00)
    Handle: 3584            <-- 0x0E00, invalid/sentinel
    Link type: eSCO, Air mode: Transparent, RX/TX packet length: 60

i.e. the firmware reports a successful eSCO connection on the bogus
sentinel handle 0x0E00 in the completion event itself. The host cannot
associate that handle, and all subsequent incoming SCO data (tagged with
the same 0x0E00) is dropped. In earlier captures on the same setup I also
force-delivered those frames to userspace via the attached
handle-rewrite experiment: every frame is exactly 60 bytes of 0x00 — not
valid mSBC (which always contains sync/header structure even for encoded
silence) — so even when accepted, the stream carries no microphone data.

CVSD behaves slightly differently: the link sometimes carries real audio
briefly (a lucky first attempt after a fresh reconnect), then degrades to
the same zero/drop behavior. mSBC (Transparent air mode) has never
delivered a single non-zero frame across several dozen attempts. This
asymmetry suggests the Transparent-mode RX path in firmware is broken
outright while the firmware-decoded CVSD path is merely unreliable.

Ruled out / experiments performed

  • linux-firmware 20260622 vs 20260810: no difference
  • bluetooth.disable_esco=1: no improvement
  • multipoint/dual-device disabled; headset on latest firmware
  • Delaying cleanup of outgoing SCO/eSCO conns pending in BT_CONNECT
    (hci_conn_drop currently schedules immediate cleanup for SCO/eSCO;
    since there is no HCI command to cancel a pending Setup Synchronous
    Connection, an early drop races the controller's completion and orphans
    the eSCO handle — separate issue, but it reliably worsens this one):
    with a 2s delay the transport becomes stable, but payloads remain zeros.
  • Removing the blanket HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN for the
    MTK block in btusb_probe() (cf. bugzilla #221722): Enhanced Setup
    Synchronous Connection is then used and completes successfully — but
    incoming frames are still zero-filled on handle 0x0E00.
  • Rewriting the bogus handle in btusb_recv_isoc() to the active eSCO
    conn's handle (analogous to "Bluetooth: btrtl: Fixup SCO header"):
    frames are then delivered to userspace, confirming the payloads are
    zeros end-to-end. Patch attached for reference.

Related reports (this looks like one firmware defect seen from
different angles):

  • bugzilla #221722 — MT7925 HFP mSBC produces all-zero samples
  • bugzilla #220564 — MTK firmware emits ACL on pseudo-handle 0x0EFD
    (confirmed by MediaTek as firmware diag traffic)
  • LE Audio BAP duplex transport collapses under 2-CIS conversational stream on MT7925 bluez#2067 — MT7925 LE Audio duplex collapses with "ISO packet
    for unknown connection handle 0" (same RX-direction pattern on ISO)
  • The unmerged "Bluetooth: btusb: deal with MT7925 invalid ISO RX
    packets" thread describes the ISO twin of this behavior

Questions / requests

  1. To MediaTek: can the (e)SCO RX path (particularly Transparent air
    mode) be looked at in the MT7925 BT firmware? I can provide any
    captures or run any diagnostics needed.
  2. Should btmtk grow a SCO-handle validation/fixup analogous to btrtl's,
    or should the 0x0Exx pseudo-handles be routed to hci_recv_diag() on
    the isoc path as is already done for some pseudo-handles on the ACL
    path?
  3. Is the blanket BROKEN_ENHANCED_SETUP_SYNC_CONN quirk for all MediaTek
    devices still appropriate given #221722 and the behavior above?

Attachments: btmon btsnoop capture of a failing HFP session, dmesg
excerpt, version details, and the two experiment patches.

Thanks,
Daniel
[ 4049.312813] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 4837.876048] Bluetooth: hci0: HW/SW Version: 0x00000000, Build Time: 20260605184935
[ 4839.705320] Bluetooth: hci0: Device setup in 1798217 usecs
[ 4839.705324] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[ 4839.873947] Bluetooth: hci0: AOSP extensions version v1.00
[ 4839.873952] Bluetooth: hci0: AOSP quality report is supported
[ 4839.874037] Bluetooth: MGMT ver 1.23
[ 5082.161716] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 5607.557576] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 5667.557110] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7709.834421] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7712.989356] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7723.363184] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7752.541768] Bluetooth: hci0: SCO packet for unknown connection handle 3584
[ 7752.541771] Bluetooth: hci0: SCO packet for unknown connection handle 3584
[ 7752.541774] Bluetooth: hci0: SCO packet for unknown connection handle 3584
[ 7752.541780] Bluetooth: hci0: SCO packet for unknown connection handle 3584
[ 7752.859654] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7808.681714] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7897.766743] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7993.031340] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 8053.030415] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 8113.030349] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 8148.535198] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[11702.675999] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[11978.506486] Bluetooth: hci0: ACL packet for unknown connection handle 3837

  • uname -a
    Linux uldixxion 7.2.0-1-cachyos [syzbot] memory leak in mgmt_cmd_status #1 SMP PREEMPT_DYNAMIC Thu, 20 Aug 2026 06:06:30 +0000 x86_64 GNU/Linux

  • echo

  • pacman -Q linux-firmware-mediatek bluez pipewire wireplumber
    linux-firmware-mediatek 1:20260810-2
    bluez 5.87-2.1
    pipewire 1:1.6.8-1.2
    wireplumber 0.5.15-1.1

  • lsusb

  • grep -i mediatek
    Bus 008 Device 006: ID 0e8d:0717 MediaTek Inc. Wireless_Device

  • lspci -nn

  • grep -i mediatek
    09:00.0 Network controller [0280]: MEDIATEK Corp. MT7925 (RZ717) Wi-Fi 7 160MHz [14c3:0717]

  • journalctl -k -b --no-pager

  • grep -iE 'mt7925.*(Version|Build)'

  • head -4
    авг 24 15:48:30 uldixxion kernel: mt7925e 0000:09:00.0: HW/SW Version: 0x8a108a10, Build Time: 20260605184651a
    авг 24 15:48:30 uldixxion kernel: mt7925e 0000:09:00.0: WM Firmware Version: ____000000, Build Time: 20260605184805

tedd-an and others added 6 commits August 24, 2026 17:17
This patch adds workflow files for ci:

[sync.yml]
 - The workflow file for scheduled work
 - Sync the repo with upstream repo and rebase the workflow branch
 - Review the patches in the patchwork and creates the PR if needed

[ci.yml]
 - The workflow file for CI tasks
 - Run CI tests when PR is created

Signed-off-by: Tedd Ho-Jeong An <tedd.an@intel.com>
This replaces the bzcafe action with bluez/action-ci so we can maintain
everything in the github bluez organization

Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This attempts to sync every 5 minutes instead of 30.

Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
bluez/action-ci uses master as default branch for workflow which is
incorrect for kernel

Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
The CI action now creates individual GitHub Check Runs per test, which
requires 'checks: write' permission on the GITHUB_TOKEN. Also make the
pull_request trigger types explicit to include 'reopened', allowing CI
to be retriggered by closing and reopening a PR.
…filled (e)SCO frames on sentinel handle 0x0E00

Hi,

I am reporting a hands-free (HFP) microphone failure on the MediaTek MT7925
(RZ717) USB Bluetooth controller, with evidence that points at the
controller firmware's synchronous-audio receive path. I can reproduce this
at will and am happy to test patches or capture further traces.

Hardware / software
-------------------
- Controller: MediaTek MT7925 (RZ717), USB 0e8d:0717, on an ASRock X870
  Pro RS WiFi desktop board (module is the stock M.2 combo card)
- Kernel: 7.2.0-1-cachyos (happy to reproduce on mainline if needed)
- BT firmware: BT_RAM_CODE_MT7925_1_1_hdr.bin from linux-firmware
  20260810 (build 20260605...); 20260622 behaves identically
- BlueZ 5.87, PipeWire 1.6.8 / WirePlumber 0.5.15 (native HFP backend)
- Failing headset: Huawei FreeClip 2 (BT 6.0, LE-Audio-first design,
  classic HFP fallback)
- Control headset: Motorola moto buds+ — mSBC HFP microphone works
  perfectly on the same adapter and stack
- The failing headset's microphone works fine on macOS (Broadcom
  controller) and on phones, so the headset side is functional

Symptom (stock kernel)
----------------------
A2DP works. On switching to the HFP profile, codec negotiation succeeds
(AT+BCS=2), Setup Synchronous Connection completes with Status: Success
(eSCO, Air mode Transparent, 60-byte packets), but no microphone audio
ever reaches userspace. dmesg fills with:

    Bluetooth: hci0: corrupted SCO packet
    Bluetooth: hci0: SCO packet for unknown connection handle 3584
    Bluetooth: hci0: ACL packet for unknown connection handle 3837

Note 3584 = 0x0E00 and 3837 = 0x0EFD. The 0x0EFD ACL traffic matches what
was identified in bugzilla #220564 as firmware-generated diag data on a
pseudo-handle; the SCO flavor appears to be unhandled.

Analysis (btmon capture attached)
---------------------------------
The attached btsnoop capture shows the defect at its origin: after Setup
Synchronous Connection on the BR-ACL link (handle 51), a retried setup is
rejected with Command Status 0x20 (Unsupported LMP Parameter Value), and
then the controller delivers:

    > HCI Event: Synchronous Connect Complete
        Status: Success (0x00)
        Handle: 3584            <-- 0x0E00, invalid/sentinel
        Link type: eSCO, Air mode: Transparent, RX/TX packet length: 60

i.e. the firmware reports a successful eSCO connection on the bogus
sentinel handle 0x0E00 in the completion event itself. The host cannot
associate that handle, and all subsequent incoming SCO data (tagged with
the same 0x0E00) is dropped. In earlier captures on the same setup I also
force-delivered those frames to userspace via the attached
handle-rewrite experiment: every frame is exactly 60 bytes of 0x00 — not
valid mSBC (which always contains sync/header structure even for encoded
silence) — so even when accepted, the stream carries no microphone data.

CVSD behaves slightly differently: the link sometimes carries real audio
briefly (a lucky first attempt after a fresh reconnect), then degrades to
the same zero/drop behavior. mSBC (Transparent air mode) has never
delivered a single non-zero frame across several dozen attempts. This
asymmetry suggests the Transparent-mode RX path in firmware is broken
outright while the firmware-decoded CVSD path is merely unreliable.

Ruled out / experiments performed
---------------------------------
- linux-firmware 20260622 vs 20260810: no difference
- bluetooth.disable_esco=1: no improvement
- multipoint/dual-device disabled; headset on latest firmware
- Delaying cleanup of outgoing SCO/eSCO conns pending in BT_CONNECT
  (hci_conn_drop currently schedules immediate cleanup for SCO/eSCO;
  since there is no HCI command to cancel a pending Setup Synchronous
  Connection, an early drop races the controller's completion and orphans
  the eSCO handle — separate issue, but it reliably worsens this one):
  with a 2s delay the transport becomes stable, but payloads remain zeros.
- Removing the blanket HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN for the
  MTK block in btusb_probe() (cf. bugzilla #221722): Enhanced Setup
  Synchronous Connection is then used and completes successfully — but
  incoming frames are still zero-filled on handle 0x0E00.
- Rewriting the bogus handle in btusb_recv_isoc() to the active eSCO
  conn's handle (analogous to "Bluetooth: btrtl: Fixup SCO header"):
  frames are then delivered to userspace, confirming the payloads are
  zeros end-to-end. Patch attached for reference.

Related reports (this looks like one firmware defect seen from
different angles):
- bugzilla #221722 — MT7925 HFP mSBC produces all-zero samples
- bugzilla #220564 — MTK firmware emits ACL on pseudo-handle 0x0EFD
  (confirmed by MediaTek as firmware diag traffic)
- bluez/bluez#2067 — MT7925 LE Audio duplex collapses with "ISO packet
  for unknown connection handle 0" (same RX-direction pattern on ISO)
- The unmerged "Bluetooth: btusb: deal with MT7925 invalid ISO RX
  packets" thread describes the ISO twin of this behavior

Questions / requests
--------------------
1. To MediaTek: can the (e)SCO RX path (particularly Transparent air
   mode) be looked at in the MT7925 BT firmware? I can provide any
   captures or run any diagnostics needed.
2. Should btmtk grow a SCO-handle validation/fixup analogous to btrtl's,
   or should the 0x0Exx pseudo-handles be routed to hci_recv_diag() on
   the isoc path as is already done for some pseudo-handles on the ACL
   path?
3. Is the blanket BROKEN_ENHANCED_SETUP_SYNC_CONN quirk for all MediaTek
   devices still appropriate given #221722 and the behavior above?

Attachments: btmon btsnoop capture of a failing HFP session, dmesg
excerpt, version details, and the two experiment patches.

Thanks,
Daniel
[ 4049.312813] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 4837.876048] Bluetooth: hci0: HW/SW Version: 0x00000000, Build Time: 20260605184935
[ 4839.705320] Bluetooth: hci0: Device setup in 1798217 usecs
[ 4839.705324] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[ 4839.873947] Bluetooth: hci0: AOSP extensions version v1.00
[ 4839.873952] Bluetooth: hci0: AOSP quality report is supported
[ 4839.874037] Bluetooth: MGMT ver 1.23
[ 5082.161716] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 5607.557576] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 5667.557110] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7709.834421] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7712.989356] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7723.363184] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7752.541768] Bluetooth: hci0: SCO packet for unknown connection handle 3584
[ 7752.541771] Bluetooth: hci0: SCO packet for unknown connection handle 3584
[ 7752.541774] Bluetooth: hci0: SCO packet for unknown connection handle 3584
[ 7752.541780] Bluetooth: hci0: SCO packet for unknown connection handle 3584
[ 7752.859654] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7808.681714] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7897.766743] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 7993.031340] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 8053.030415] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 8113.030349] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[ 8148.535198] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[11702.675999] Bluetooth: hci0: ACL packet for unknown connection handle 3837
[11978.506486] Bluetooth: hci0: ACL packet for unknown connection handle 3837
+ uname -a
Linux uldixxion 7.2.0-1-cachyos #1 SMP PREEMPT_DYNAMIC Thu, 20 Aug 2026 06:06:30 +0000 x86_64 GNU/Linux
+ echo

+ pacman -Q linux-firmware-mediatek bluez pipewire wireplumber
linux-firmware-mediatek 1:20260810-2
bluez 5.87-2.1
pipewire 1:1.6.8-1.2
wireplumber 0.5.15-1.1
+ lsusb
+ grep -i mediatek
Bus 008 Device 006: ID 0e8d:0717 MediaTek Inc. Wireless_Device
+ lspci -nn
+ grep -i mediatek
09:00.0 Network controller [0280]: MEDIATEK Corp. MT7925 (RZ717) Wi-Fi 7 160MHz [14c3:0717]
+ journalctl -k -b --no-pager
+ grep -iE 'mt7925.*(Version|Build)'
+ head -4
авг 24 15:48:30 uldixxion kernel: mt7925e 0000:09:00.0: HW/SW Version: 0x8a108a10, Build Time: 20260605184651a
авг 24 15:48:30 uldixxion kernel: mt7925e 0000:09:00.0: WM Firmware Version: ____000000, Build Time: 20260605184805
@github-actions

Copy link
Copy Markdown

CheckPatch
Desc: Run checkpatch.pl script
Duration: 0.60 seconds
Result: FAIL
Output:

MT7925 (0e8d:0717): HFP microphone unusable — firmware delivers zero-filled (e)SCO frames on sentinel handle 0x0E00
ERROR: Invalid commit separator - some tools may have problems applying this
#120: 
-------------------

ERROR: Invalid commit separator - some tools may have problems applying this
#135: 
----------------------

ERROR: Invalid commit separator - some tools may have problems applying this
#150: 
---------------------------------

ERROR: Invalid commit separator - some tools may have problems applying this
#178: 
---------------------------------

ERROR: Invalid commit separator - some tools may have problems applying this
#208: 
--------------------

WARNING: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#264: 
09:00.0 Network controller [0280]: MEDIATEK Corp. MT7925 (RZ717) Wi-Fi 7 160MHz [14c3:0717]

ERROR: Avoid using diff content in the commit message - patch(1) might not work
#271: 
--- a/drivers/bluetooth/btusb.c

ERROR: Invalid commit separator - some tools may have problems applying this
#271: 
--- a/drivers/bluetooth/btusb.c

ERROR: Missing Signed-off-by: line(s)

total: 8 errors, 1 warnings, 46 lines checked

NOTE: For some of the reported defects, checkpatch may be able to
      mechanically convert to the typical style using --fix or --fix-inplace.

/github/workspace/src/patch/14766031.patch has style problems, please review.

NOTE: Ignored message types: UNKNOWN_COMMIT_ID

NOTE: If any of the errors are false positives, please report
      them to the maintainer, see CHECKPATCH in MAINTAINERS.


@github-actions

Copy link
Copy Markdown

VerifyFixes
Desc: Verify Fixes tag format and validity
Duration: 0.10 seconds
Result: PASS

@github-actions

Copy link
Copy Markdown

VerifySignedoff
Desc: Verify Signed-off-by chain
Duration: 0.10 seconds
Result: PASS

@github-actions

Copy link
Copy Markdown

GitLint
Desc: Run gitlint
Duration: 0.26 seconds
Result: FAIL
Output:

MT7925 (0e8d:0717): HFP microphone unusable — firmware delivers zero-filled (e)SCO frames on sentinel handle 0x0E00

1: CC1 Body does not contain a 'Signed-off-by' line
1: T1 Title exceeds max length (115>80): "MT7925 (0e8d:0717): HFP microphone unusable — firmware delivers zero-filled (e)SCO frames on sentinel handle 0x0E00"
116: B1 Line exceeds max length (85>80): "[ 4837.876048] Bluetooth: hci0: HW/SW Version: 0x00000000, Build Time: 20260605184935"
118: B1 Line exceeds max length (115>80): "[ 4839.705324] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported."
142: B1 Line exceeds max length (103>80): "Linux uldixxion 7.2.0-1-cachyos #1 SMP PREEMPT_DYNAMIC Thu, 20 Aug 2026 06:06:30 +0000 x86_64 GNU/Linux"
155: B1 Line exceeds max length (91>80): "09:00.0 Network controller [0280]: MEDIATEK Corp. MT7925 (RZ717) Wi-Fi 7 160MHz [14c3:0717]"
159: B1 Line exceeds max length (110>80): "авг 24 15:48:30 uldixxion kernel: mt7925e 0000:09:00.0: HW/SW Version: 0x8a108a10, Build Time: 20260605184651a"
160: B1 Line exceeds max length (115>80): "авг 24 15:48:30 uldixxion kernel: mt7925e 0000:09:00.0: WM Firmware Version: ____000000, Build Time: 20260605184805"

@github-actions

Copy link
Copy Markdown

SubjectPrefix
Desc: Check subject contains "Bluetooth" prefix
Duration: 0.09 seconds
Result: FAIL
Output:

"Bluetooth: " prefix is not specified in the subject

@github-actions

Copy link
Copy Markdown

BuildKernel
Desc: Build Kernel for Bluetooth
Duration: 22.49 seconds
Result: PASS

@github-actions

Copy link
Copy Markdown

CheckAllWarning
Desc: Run linux kernel with all warning enabled
Duration: 24.58 seconds
Result: PASS

@github-actions

Copy link
Copy Markdown

CheckSparse
Desc: Run sparse tool with linux kernel
Duration: 22.89 seconds
Result: PASS

@github-actions

Copy link
Copy Markdown

BuildKernel32
Desc: Build 32bit Kernel for Bluetooth
Duration: 21.41 seconds
Result: PASS

@github-actions

Copy link
Copy Markdown

CheckKernelLLVM
Desc: Build kernel with LLVM + context analysis
Duration: 0.00 seconds
Result: SKIP
Output:

Clang not found

@github-actions

Copy link
Copy Markdown

TestRunnerSetup
Desc: Setup kernel and bluez for test-runner
Duration: 383.25 seconds
Result: PASS

@github-actions

Copy link
Copy Markdown

IncrementalBuild
Desc: Incremental build with the patches in the series
Duration: 21.08 seconds
Result: PASS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants