| 123456789101112131415161718192021222324252627282930313233 |
- name: 'Setup Misc Configs'
- description: 'Set up kernel configuration fragment with miscellaneous options'
- inputs:
- version:
- description: 'Kernel config version (e.g., android14-6.12)'
- required: true
- kernel_version:
- description: 'Kernel version (e.g., 6.1)'
- required: true
- android_version:
- description: 'Android version (e.g., android14)'
- required: true
- sublevel:
- description: 'Sublevel of kernel version (e.g., 1)'
- required: true
- variant:
- description: 'Build variant (Normal, Bypass, Wild, boot-time)'
- required: true
- runs:
- using: "composite"
- steps:
- - name: Enable Kernel Configs
- uses: ./.github/actions/set-kernel-config
- with:
- defconfig: ${{ github.workspace }}/kernel/common/arch/arm64/configs/gki_defconfig
- fragment: ${{ github.workspace }}/wild_gki.fragment
- configs: |
- CONFIG_OVERLAY_FS
- CONFIG_TMPFS_XATTR
- CONFIG_TMPFS_POSIX_ACL
- CONFIG_KALLSYMS
- CONFIG_KALLSYMS_ALL
|