action.yml 1012 B

123456789101112131415161718192021222324252627282930313233
  1. name: 'Setup Misc Configs'
  2. description: 'Set up kernel configuration fragment with miscellaneous options'
  3. inputs:
  4. version:
  5. description: 'Kernel config version (e.g., android14-6.12)'
  6. required: true
  7. kernel_version:
  8. description: 'Kernel version (e.g., 6.1)'
  9. required: true
  10. android_version:
  11. description: 'Android version (e.g., android14)'
  12. required: true
  13. sublevel:
  14. description: 'Sublevel of kernel version (e.g., 1)'
  15. required: true
  16. variant:
  17. description: 'Build variant (Normal, Bypass, Wild, boot-time)'
  18. required: true
  19. runs:
  20. using: "composite"
  21. steps:
  22. - name: Enable Kernel Configs
  23. uses: ./.github/actions/set-kernel-config
  24. with:
  25. defconfig: ${{ github.workspace }}/kernel/common/arch/arm64/configs/gki_defconfig
  26. fragment: ${{ github.workspace }}/wild_gki.fragment
  27. configs: |
  28. CONFIG_OVERLAY_FS
  29. CONFIG_TMPFS_XATTR
  30. CONFIG_TMPFS_POSIX_ACL
  31. CONFIG_KALLSYMS
  32. CONFIG_KALLSYMS_ALL