Parcourir la source

fix(action): comment out conditional patch application for Android 16 6.12

TheWildJames il y a 4 mois
Parent
commit
863f5200fb
1 fichiers modifiés avec 8 ajouts et 8 suppressions
  1. 8 8
      .github/actions/susfs/action.yml

+ 8 - 8
.github/actions/susfs/action.yml

@@ -177,10 +177,10 @@ runs:
       working-directory: ${{ github.workspace }}/kernel/common
       run: |
         echo "Applying 6.12 SUSFS fixes"
-        if [ "${{ inputs.sublevel }}" -le "77" ]; then
-          echo "Applying exec.c Android 16 6.12 Fake Patch"
-          sed -i '/^#include <linux\/dma-buf.h>$/d' fs/exec.c
-        fi
+        #if [ "${{ inputs.sublevel }}" -le "77" ]; then
+        #  echo "Applying exec.c Android 16 6.12 Fake Patch"
+        #  sed -i '/^#include <linux\/dma-buf.h>$/d' fs/exec.c
+        #fi
 
     - name: Apply Kernel SUSFS Patches
       shell: bash
@@ -279,10 +279,10 @@ runs:
       working-directory: ${{ github.workspace }}/kernel/common
       run: |
         echo "Reverting 6.12 Fake Patches"
-        if [ "${{ inputs.sublevel }}" -le "77" ]; then
-          echo "Reverting exec.c Android 16 6.12 Fake Patch"
-          sed -i '/^#include <linux\/ksh.h>$/a #include <linux/dma-buf.h>' fs/exec.c
-        fi
+        #if [ "${{ inputs.sublevel }}" -le "77" ]; then
+        #  echo "Reverting exec.c Android 16 6.12 Fake Patch"
+        #  sed -i '/^#include <linux\/ksh.h>$/a #include <linux/dma-buf.h>' fs/exec.c
+        #fi
 
     - name: Apply Kernel SUSFS Patches
       shell: bash