소스 검색

ci(workflows): uncomment sed command in build workflow

The sed command was previously commented out but is needed to properly handle user namespace mapping in susfs.c. This ensures correct uid translation when mounting filesystems.
TheWildJames 9 달 전
부모
커밋
26a23b7acf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .github/workflows/build.yml

+ 1 - 1
.github/workflows/build.yml

@@ -354,7 +354,7 @@ jobs:
                 patch -p1 < fix_namespace.c.patch || true
                 cp $KERNEL_PATCHES/ksu/susfs_fix_patches/v${SUSFS_VERSION}/fix_open.c.patch ./
                 patch -p1 < fix_open.c.patch || true
-                #sed -i 's/i_uid_into_mnt(i_user_ns(inode), inode)/i_uid_into_mnt(inode->i_sb->s_user_ns, inode)/g' fs/susfs.c
+                sed -i 's/i_uid_into_mnt(i_user_ns(inode), inode)/i_uid_into_mnt(inode->i_sb->s_user_ns, inode)/g' fs/susfs.c
               fi
               ;;
           esac