We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c3cfe3 commit 529c447Copy full SHA for 529c447
1 file changed
.github/actions/build-kernel/action.yml
@@ -1422,6 +1422,19 @@ runs:
1422
CONFIG_NET_SCH_FQ_CODEL=y
1423
EOF
1424
1425
+ - name: Apply BBRv3
1426
+ shell: bash
1427
+ run: |
1428
+ set -euo pipefail
1429
+ echo "::group::Apply BBRv3 patches"
1430
+ cd "$COMMON_KERNEL_FOLDER"
1431
+ cat >> "$COMMON_KERNEL_FOLDER/arch/arm64/configs/gki_defconfig" <<EOF
1432
+ CONFIG_TCP_CONG_BBR3=y
1433
+ EOF
1434
+ curl -Ls https://raw.githubusercontent.com/fatalcoder524/kernel_patches_additional/refs/heads/main/bbr3/0001-Test-a13-5.15-bbrv3.patch | patch -p1 -F 3
1435
+ echo "✅ BBRv3 patches applied"
1436
+ echo "::endgroup::"
1437
+
1438
- name: Add TTL Target Support
1439
if: ${{ env.OP_TTL == 'true' }}
1440
shell: bash
0 commit comments