浏览代码

Update action.yml to enable kernel options via scripts

Replaced inline configuration additions with script commands to enable specific kernel options.
jimsterino98 1 月之前
父节点
当前提交
895ebd1095
共有 1 个文件被更改,包括 3 次插入6 次删除
  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