[root] 4 cores Activator

stojshic

Senior Member
Aug 14, 2010
494
198
63
Bela Crkva - Serbia
Thanks! And do I need to run this app everytime I reboot the phone or it does it automatically disable the 2 big core after every reboot?

Thanks again.
This app enables 3 cores on phones that have only 1 core enabled, not disabling 2 Big cores, for that you must use tot file... And yes, it enables them automatically on every reboot

Sent from my ZTE A2017U using Tapatalk
 
  • Like
Reactions: pokemon1122

jhirome

New member
Nov 7, 2009
1
0
0
This app enables 3 cores on phones that have only 1 core enabled, not disabling 2 Big cores, for that you must use tot file... And yes, it enables them automatically on every reboot

Sent from my ZTE A2017U using Tapatalk
I'm just newbie. What's this tot file? How to enable 4 cores automatically?
 

Milosenko

New member
Jul 21, 2017
1
0
0
Code analyzing

Hi...
You just need to edit the file in: /system/etc/init.qcom.post_boot.sh

Edit the LAST LINE of the file, thats starts with g4ilapofix=true:
g4ilapofix=true; if $g4ilapofix......

Change it to:
g4ilapofix=true;
if $g4ilapofix;
then
echo 1 > /sys/devices/system/cpu/cpu0/online;
echo 1 > /sys/devices/system/cpu/cpu1/online;
echo 1 > /sys/devices/system/cpu/cpu2/online;
echo 1 > /sys/devices/system/cpu/cpu3/online;
fi;

And you are done. Never again you will need to do something after reboot.

I'm now trying to edit the TOT files, so this is removed from the MOD and all 4 cores be active since the first boot. Which is how it should be.
I think it is absurd to FORCE everyone to pay 25 USD. A donation should never be forced.
XDA exists because people wanted to help others, for free, not to gain money over other people. Donations are always apreciated, but should not be mandatory.
End of my "init.qcom.post_boot.sh" file after disabling two Big cores (flashing with .tot file) is exactly like this:

g4ilapofix=false; if $g4ilapofix; then if $(pm list packages | grep -q cz.youber.g4ilapo); then

echo 1 > /sys/devices/system/cpu/cpu0/online;
echo 1 > /sys/devices/system/cpu/cpu1/online;
echo 1 > /sys/devices/system/cpu/cpu2/online;
echo 1 > /sys/devices/system/cpu/cpu3/online;

else echo 0 > /sys/devices/system/cpu/cpu1/online;
echo 0 > /sys/devices/system/cpu/cpu2/online;
echo 0 > /sys/devices/system/cpu/cpu3/online; fi;

else echo 0 > /sys/devices/system/cpu/cpu1/online;
echo 0 > /sys/devices/system/cpu/cpu2/online;
echo 0 > /sys/devices/system/cpu/cpu3/online; fi

so what do you think, what should be the changes in this code in order to apply all cores on boot to work?
 

abdul pol

New member
Jan 7, 2018
1
0
0
Большая благодарность stojshic за программу.
Всех благ в НГ.
Удачи Вам и Вашим близким.
 
Last edited:

shahper1

Senior Member
Oct 16, 2015
76
13
0
Thanks a lot, worked very well on F500L,Your app saved my phone since F500L don't have tot Nougat to disable those 2 cores so I am sticking with LP for now till there is a similar fix for nougat.
Thanks once again.