Browse Source

Update action.yml to enable kernel options via scripts

Replaced inline configuration additions with script commands to enable specific kernel options.
jimsterino98 1 tháng trước cách đây
mục cha
commit
895ebd1095
1 tập tin đã thay đổi với 3 bổ sung6 xóa
  1. 3 6
      .github/actions/configs/action.yml

+ 3 - 6
.github/actions/configs/action.yml

@@ -7,12 +7,9 @@ runs:
   - name: add mountify support
     shell: bash
     run: |
-     cat >> "$GKI_DEFCONFIG" << 'EOF'
-     # Mountify Support
-     CONFIG_OVERLAY_FS=y
-     CONFIG_TMPFS_XATTR=y
-     CONFIG_TMPFS_POSIX_ACL=y
-     EOF
+     "$COMMON/scripts/config" --file "$GKI_DEFCONFIG" --enable CONFIG_OVERLAY_FS
+     "$COMMON/scripts/config" --file "$GKI_DEFCONFIG" --enable CONFIG_TMPFS_XATTR
+     "$COMMON/scripts/config" --file "$GKI_DEFCONFIG" --enable CONFIG_TMPFS_POSIX_ACL
      
   - name: nuke securities for root access
     shell: bash