- Issue lpm fix
- Recode Logic Write
- Issue Bootloop
- Issue Force Stop App
- Same with 2.6 version
- setting up lowram
- Fix Path in update.json
- Adreno Snapshot Fix Path
- VM Caches
- Delete Some Function Not Work
- New Logic For Cpu
- Adreno idler, lmp.
- Refacto code Service.sh
- Multi thread, Hyper thread Delete
- Add MIT License
- Setup update.json For Automatic Update In Magisk, IzzySoft
- Fix Play Service Disable
- Fix Double Proccess Modname
- Misc Error
- Fix Google Service Drain
- Change Scheduler To Deadline
- Change read_ahead_kb And nr_requests To 128
- Change Value Group Idle and Group Idle Us 8, 8000
- Delete Log Function
- Notification After Module Installed And Reboot
- Change Sheduler I/O To cfq
- Sdcard Tweaks (read_ahead_kd)
- Optimize Other Code
- Removes the [ ! -w "$path" ] || [ -w "$path" ] condition as it is not needed.
- Combines the conditions [ ! -w "$path" ] and chmod +w "$path" into one elif block.
- Using single brackets [ ] for conditions
- Removed the use of if !echo "$data" > "$path" 2> /dev/null and replaced it with echo "$data" > "$path" || { ... } . This allows us to handle errors better and return an exit code of 1 if the write fails.
- Combines the chmod +w "$path" 2>/dev/null command with a return of 1 using the || operator. If the chmod command fails, then exit code 1 will be returned immediately.
for scheduler in /sys/block/*/queue; do write $scheduler/scheduler "noop" write $scheduler/iostats "0" write $scheduler/add_random "0" write $scheduler/nomerges "1" write $scheduler/rq_affinity "0" write $scheduler/rotational "0" write $scheduler/read_ahead_kb "4096" write $scheduler/nr_requests "512" done
for iosched in /sys/block/*/iosched; do write $iosched/slice_idle "0" write $iosched/slice_idle_us "0" write $iosched/group_idle "0" write $iosched/group_idle_us "0" write $iosched/low_latency "1" done
-
In this setting, we use the "noop" scheduler which is a simple and efficient scheduler for IO performance. We also set some other values to improve performance, such as enabling IO request merging by setting "nomerges" to 1, setting "read_ahead_kb" to 4096 to read more data at once, and increasing the number of "nr_requests" to 512 to allow more IO requests simultaneously.
-
In the code in the refactored uninstall.sh file, I added a few small changes to ensure a successful uninstall. I used the -r option in the rm command to recursively delete directories if they are empty after deleting the files in them. I also added quotes to the LINE variable to avoid problems with spaces or special characters in file paths.
- Fix Double Process ro.sys.fw.bg_apps_limit
- Multithread & Hyperthread true
- Delete Dalvik Settings (Not Work)
- Set Touch Boost
- Force GPU Touch RenderRender
- Google Service Reduce Drain Tweaks
- CPU Perf
- Add Ram Management
- I/O Optimization RAM
- VM Setting
- OOM (Out Of Memory)
- Entropy
- Optimization Activity Manager
- Low Memory Killer
- Initial Release