Ultra Optimization Reborn Root Modules
Advanced Android optimization Magisk module.
Dynamically switches CPU governor, disables sensors, and applies low-level kernel tweaks based on screen state.
Supports Android 10–16+, ARM 32/64-bit.
---
How it works
After boot, the module launches two components:
· hibernation — a background C++ daemon that polls screen state every N seconds and reacts to changes.
Screen ON: performance governor, sensors enabled, mem_sleep restored.
Screen OFF: power-saving governor, sensors disabled, deep suspend (if supported).
· service.sh — runs once per boot. Generates config if missing, applies system tweaks, and starts the daemon.
---
Key features
· Smart CPU governor switching
Automatic selection from ~40 known governors.
Screen on → performance-oriented (schedutil, interactive, ondemand…).
Screen off → power-saving (powersave, conservative, darkness…).
Falls back to none if governor control is unavailable.
Supports auto mode: remembers the active governor before sleep and restores it exactly on wake.
· Sensor hibernation
Disables camera and microphone via sensor_privacy when screen is off.
Compatible with Android 10–16+. Automatically disabled if the service is not present.
· Deep suspend (Suspend-to-RAM)
Sets mem_sleep=deep when screen is off. Requires kernel support (/sys/power/mem_sleep).
· TCP optimization
Selects the best available algorithm: bbr3 → bbr2 → bbr → cubic → westwood → reno.
· Logging reduction
Suppresses kernel debug output, printk messages, ramdump generation, I/O stats, and Wi-Fi logs.
Additional debug properties disabled via resetprop at boot.
· Other tweaks
Stops unneeded system services (statsd, cnss_diag, etc.).
Disables BLE scanning, hotword detection, screensaver.
Optimizes zram compressor and I/O scheduler per block device.
Optionally disables GMS services (off by default — may break banking apps and OTA).
· Interactive menu
In-terminal tool for on-demand optimization tasks.
---
**With this method we get more stable FPS in games and programs, increased battery life by disabling unnecessary functions and reduced resource consumption when the screen is off.**
Installation
1. Download the .zip module file.
2. Open Magisk → Modules → tap + → select the file.
3. Wait for installation to complete.
4. Reboot.
Config is generated automatically on first boot.
On reinstall or update, the old config is removed and recreated.
---
Commands
su -c ultraopt # open interactive menu
su -c ultraopt -ram # clear RAM
su -c ultraopt -clean # clear cache and temp files
su -c ultraopt -dex # optimize apps (dex2oat)
su -c ultraopt -bg # kill background apps
su -c ultraopt -tcp # reapply TCP optimization
su -c ultraopt -fstrim # trim filesystem
su -c ultraopt -h # help