action.yml 590 B

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