Explorar el Código

Disable Rust binder module when IPC_NS enabled on 6.12

trae hace 4 meses
padre
commit
bc25b02074
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. 8 0
      .github/actions/droidspaces/action.yml

+ 8 - 0
.github/actions/droidspaces/action.yml

@@ -61,9 +61,17 @@ runs:
       working-directory: ${{ github.workspace }}/kernel
       run: |
         cat >> "${{ github.workspace }}/wild_gki.fragment" << 'EOF'
+        CONFIG_ANDROID_KABI_RESERVE=y
+        CONFIG_ANDROID_VENDOR_OEM_DATA=y
         CONFIG_SYSVIPC=y
         CONFIG_POSIX_MQUEUE=y
         CONFIG_IPC_NS=y
         CONFIG_PID_NS=y
         CONFIG_DEVTMPFS=y
         EOF
+
+        if [ "${{ inputs.version }}" = "android16-6.12" ]; then
+          cat >> "${{ github.workspace }}/wild_gki.fragment" << 'EOF'
+        # CONFIG_ANDROID_BINDER_IPC_RUST is not set
+        EOF
+        fi