action.yml 491 B

1234567891011121314151617181920
  1. name: add bbrv1
  2. description: enable configs to add bbrv1 to kernel
  3. runs:
  4. using: composite
  5. steps:
  6. - name: add bbr configs to defconfig
  7. shell: bash
  8. run: |
  9. cat >> "$GKI_DEFCONFIG" << 'EOF'
  10. # Add bbrv1
  11. CONFIG_NET_SCH_FQ=y
  12. CONFIG_TCP_CONG_ADVANCED=y
  13. CONFIG_TCP_CONG_BBR=y
  14. CONFIG_TCP_CONG_CUBIC=y
  15. CONFIG_DEFAULT_CUBIC=y
  16. # CONFIG_TCP_CONG_BIC is not set
  17. # CONFIG_TCP_CONG_WESTWOOD is not set
  18. # CONFIG_TCP_CONG_HTCP is not set
  19. EOF