name: 'Setup Misc Configs' description: 'Set up kernel configuration fragment with miscellaneous options' inputs: kernel_version: description: 'Kernel version (e.g., 6.1)' required: true android_version: description: 'Android version (e.g., android14)' required: true runs: using: "composite" steps: - name: Apply Kernel Configuration shell: bash run: | cat >> "${{ github.workspace }}/wild_gki.fragment" << 'EOF' # Mountify Support CONFIG_OVERLAY_FS=y CONFIG_TMPFS_XATTR=y CONFIG_TMPFS_POSIX_ACL=y # KPatch-Next Support CONFIG_KALLSYMS=y CONFIG_KALLSYMS_ALL=y # CONFIG_TRIM_UNUSED_KSYMS is not set EOF