@@ -535,7 +535,7 @@ jobs:
535535 REPO_OWNER : ${{ github.repository_owner }}
536536 REPO_NAME : ${{ github.event.repository.name }}
537537 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
538- RELEASE_NAME : ' *TEST BUILD* OnePlus Kernels With KernelSU Next & SUSFS v1.5.12 *TEST BUILD*'
538+ RELEASE_NAME : ' *TEST BUILD* OnePlus Kernels With KernelSU Next & SUSFS v2.0.0 *TEST BUILD*'
539539 SUSFS_BASE_VERSION : ' v2.0.0'
540540 steps :
541541 - name : 📥 Checkout code
@@ -663,13 +663,12 @@ jobs:
663663 | Component | Version/Setting |
664664 |-----------|----------------|
665665 EOF
666- if [ -n ${{ needs.build.outputs.ksun_ver }}]; then
666+ if [ " ${{ matrix.ksu_type }}" = "KSUN" ]; then
667667 cat << EOF >> release_notes.md
668668 | **KernelSU Next Branch** | \`$KSUN_BRANCH\` |
669- | **KernelSU Next Version** | \`${{ needs.build.outputs.ksun_ver }}\` |
669+ | **KernelSU Next Version** | \`${{ needs.build.outputs.ksu_ver }}\` |
670670 EOF
671- fi
672- if [ -n ${{ needs.build.outputs.ksu_ver }}]; then
671+ else
673672 cat << EOF >> release_notes.md
674673 | **KernelSU Branch** | \`$KSU_BRANCH\` |
675674 | **KernelSU Version** | \`${{ needs.build.outputs.ksu_ver }}\` |
@@ -697,12 +696,11 @@ jobs:
697696
698697 ### 🔐 Root Management
699698 EOF
700- if [ -n ${{ needs.build.outputs.ksun_ver }}]; then
699+ if [ " ${{ matrix.ksu_type }}" = "KSUN" ]; then
701700 cat << EOF >> release_notes.md
702701 - **KernelSU Next** - Next-generation kernel-level root solution
703702 EOF
704- fi
705- if [ -n ${{ needs.build.outputs.ksu_ver }}]; then
703+ else
706704 cat << EOF >> release_notes.md
707705 - **KernelSU** - Kernel-level root solution
708706 EOF
@@ -716,13 +714,13 @@ jobs:
716714 - **Baseband Guard (BBG)** - LSM-based baseband security
717715 - **SUSFS Hide Features**:
718716 - ✅ SUS_PATH - Hide suspicious paths
719- - ✅ SUS_MOUNT - Hide mount points
717+ - ✅ SUS_MOUNT - Hide mount points (No Cli Support)
720718 - ✅ SUS_KSTAT - Spoof kernel statistics
721- - ✅ TRY_UMOUNT - Auto-unmount detection
722719 - ✅ SPOOF_UNAME - Kernel version spoofing
723720 - ✅ SPOOF_CMDLINE - Boot parameters spoofing
724721 - ✅ OPEN_REDIRECT - File access redirection
725722 - ✅ SUS_MAP - Memory mapping protection
723+ - ✅ AVC_SPOOF - Spoof Procfs avc denial logs
726724 - **Ptrace Leak Fix** - For kernels < 5.16
727725
728726 ### 🚀 Performance & Networking
@@ -732,6 +730,7 @@ jobs:
732730 - **TTL Target Support** - Network packet manipulation
733731 - **LTO (Link Time Optimization)** - Optimized binary size and performance
734732 - **ccache-accelerated builds** - Faster compilation times
733+ - **Optimisation Patches** - General Optimisation Patches for overall improvement
735734
736735 ### 🔧 System Features
737736 - **TMPFS_XATTR** - Extended attributes for tmpfs (Mountify support)
@@ -744,13 +743,12 @@ jobs:
744743
745744 ### Official Manager
746745 EOF
747- if [ -n ${{ needs.build.outputs.ksun_ver }}]; then
746+ if [ " ${{ matrix.ksu_type }}" = "KSUN" ]; then
748747 cat << EOF >> release_notes.md
749748 - **KernelSU Next Manager**
750749 → [GitHub Release](https://github.com/KernelSU-Next/KernelSU-Next/releases)
751750 EOF
752- fi
753- if [ -n ${{ needs.build.outputs.ksu_ver }}]; then
751+ else
754752 cat << EOF >> release_notes.md
755753 - **KernelSU Next Manager**
756754 → [GitHub Release](https://github.com/KernelSU-Next/KernelSU-Next/releases)
@@ -798,6 +796,7 @@ jobs:
798796 - Added TMPFS_XATTR and TMPFS_POSIX_ACL support for Mountify
799797 - Added Ptrace leak fix for kernels < 5.16
800798 - Compiler optimizations (${{ inputs.optimize_level }})
799+ - Additional General Optimisations
801800
802801 ### Previous Releases
803802 See [Releases Page](${{ github.server_url }}/${{ github.repository }}/releases)
0 commit comments