action.yml 726 B

12345678910111213141516171819202122232425262728
  1. name: 'Setup Misc Configs'
  2. description: 'Set up kernel configuration fragment with miscellaneous options'
  3. inputs:
  4. kernel_version:
  5. description: 'Kernel version (e.g., 6.1)'
  6. required: true
  7. android_version:
  8. description: 'Android version (e.g., android14)'
  9. required: true
  10. runs:
  11. using: "composite"
  12. steps:
  13. - name: Apply Kernel Configuration
  14. shell: bash
  15. run: |
  16. cat >> "${{ github.workspace }}/wild_gki.fragment" << 'EOF'
  17. # Mountify Support
  18. CONFIG_OVERLAY_FS=y
  19. CONFIG_TMPFS_XATTR=y
  20. CONFIG_TMPFS_POSIX_ACL=y
  21. # KPatch-Next Support
  22. CONFIG_KALLSYMS=y
  23. CONFIG_KALLSYMS_ALL=y
  24. # CONFIG_TRIM_UNUSED_KSYMS is not set
  25. EOF