|
|
@@ -195,3 +195,17 @@ runs:
|
|
|
EOF
|
|
|
) fs/notify/fdinfo.c
|
|
|
fi
|
|
|
+
|
|
|
+ - name: Apply Android 14 6.1 Fixes
|
|
|
+ if: inputs.android_version == 'android14' && inputs.kernel_version == '6.1'
|
|
|
+ shell: bash
|
|
|
+ working-directory: ${{ github.workspace }}/kernel/common
|
|
|
+ run: |
|
|
|
+ if [ "${{ inputs.sublevel }}" -le "117" ]; then
|
|
|
+ sed -i '/#include "fd.h"/r'<(cat <<'EOF'
|
|
|
+ #ifdef CONFIG_KSU_SUSFS_SUS_MAP
|
|
|
+ #include <linux/susfs_def.h>
|
|
|
+ #endif
|
|
|
+ EOF
|
|
|
+ ) fs/proc/base.c
|
|
|
+ fi
|