diff --git a/build.sh b/build.sh index bb0d53f..ba61456 100755 --- a/build.sh +++ b/build.sh @@ -9,5 +9,5 @@ curl -F document=@$1 "https://api.telegram.org/bot${token}/sendDocument" \ } echo "" rm -rf *.zip -zip -r9 "YAKT-v9.zip" . -x *build* -x *changelog* -x *.bak* -x *.git* -push "YAKT-v9.zip" +zip -r9 "YAKT-v10.zip" . -x *build* -x *changelog* -x *.bak* -x *.git* +push "YAKT-v10.zip" diff --git a/changelog.txt b/changelog.txt index 717edcc..98d5c27 100755 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,6 @@ -- Boot time to apply tweak 60s -> 30s -- Increased vfs_cache_pressure to 40 (This to avoid out-of-memory conditions) -- Nuked Google's schedutil rate-limits from Pixel 3 (This is old and doesn't make sense using ir on newer devices) -- Disabled swap readahead completely -- Increased kernel.perf_cpu_time_max_percent to 40 (This might increase performance) -- Low latency for busy_poll & busy_read (This might incease power usage) +- Use a "smarter way" to tweak scheduler +- Tweaked sched_nr_migrate (For less latency) +- Cleaned up zswap tweak log +- Reduced stat_interval to 15 (For a bit less latency) +- Hardcoded swappiness to 100 +- Increased nr_requests to 256 (For a better scheduler performance) \ No newline at end of file diff --git a/module.prop b/module.prop index a267022..ff58a22 100755 --- a/module.prop +++ b/module.prop @@ -1,6 +1,6 @@ id=YAKT name=Yet Another Kernel Tweaker -version=v9 +version=v10 versionCode=1 author=NotZeetaa description=This modules tweaks your kernel parameters. \ No newline at end of file diff --git a/yakt.sh b/yakt.sh index 263fabb..91a207a 100644 --- a/yakt.sh +++ b/yakt.sh @@ -1,5 +1,5 @@ #!/system/bin/sh -# Yakt v9 +# Yakt v10 # Author: @NotZeetaa (Github) # ×××××××××××××××××××××××××× # @@ -24,8 +24,8 @@ BL=/dev/blkio SCHED_PERIOD="$((1 * 1000 * 1000))" # Info -echo "# YAKT v9" > $LOG -echo "# Build Date: 16/08/2023" >> $LOG +echo "# YAKT v10" > $LOG +echo "# Build Date: 27/08/2023" >> $LOG echo -e "# Author: @NotZeetaa (Github)\n" >> $LOG echo "[$(date "+%H:%M:%S")] Device: $(getprop ro.product.system.model)" >> $LOG echo "[$(date "+%H:%M:%S")] Brand: $(getprop ro.product.system.brand)" >> $LOG