|
@@ -1,5 +1,9 @@
|
|
|
name: apply susfs patches
|
|
name: apply susfs patches
|
|
|
description: apply susfs patches
|
|
description: apply susfs patches
|
|
|
|
|
+inputs:
|
|
|
|
|
+ nomount:
|
|
|
|
|
+ description: 'nomount'
|
|
|
|
|
+ required: true
|
|
|
|
|
|
|
|
runs:
|
|
runs:
|
|
|
using: composite
|
|
using: composite
|
|
@@ -123,3 +127,9 @@ runs:
|
|
|
shell: bash
|
|
shell: bash
|
|
|
run: |
|
|
run: |
|
|
|
"$COMMON/scripts/config" --file "$GKI_DEFCONFIG" --enable CONFIG_KSU_SUSFS
|
|
"$COMMON/scripts/config" --file "$GKI_DEFCONFIG" --enable CONFIG_KSU_SUSFS
|
|
|
|
|
+
|
|
|
|
|
+ - name: remove open redirect if nomount is enabled
|
|
|
|
|
+ if: inputs.nomount == 'true'
|
|
|
|
|
+ shell: bash
|
|
|
|
|
+ run: |
|
|
|
|
|
+ "$COMMON/scripts/config" --file "$GKI_DEFCONFIG" --disable CONFIG_KSU_SUSFS_OPEN_REDIRECT
|