File tree Expand file tree Collapse file tree
.github/actions/build-kernel Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1422,6 +1422,24 @@ runs:
14221422 CONFIG_NET_SCH_FQ_CODEL=y
14231423 EOF
14241424
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+ PATCH_URL="https://raw.githubusercontent.com/fatalcoder524/kernel_patches_additional/refs/heads/main/bbr3/0001-Test-$ANDROID_VER-$KERNEL_VER-bbrv3.patch"
1435+ if curl -f -Ls "$PATCH_URL" -o temp.patch; then
1436+ patch -p1 -F 3 < temp.patch
1437+ rm temp.patch
1438+ fi
1439+
1440+ echo "✅ BBRv3 patches applied"
1441+ echo "::endgroup::"
1442+
14251443 - name : Add TTL Target Support
14261444 if : ${{ env.OP_TTL == 'true' }}
14271445 shell : bash
You can’t perform that action at this time.
0 commit comments