boot_cpus=0-0 is wrong just boot_cpus=0 should work if not use "=1" or "=0-1"Hi
Thanks for sharing the method. I want to boot with only 1 core and later use 4 cores. How can i write for that:
maxcpus=4 boot_cpus=0-0
OR
maxcpus=4 boot_cpus=0
Also wanted to confirm that when do the maxcpus=4 become functional, i gues that starts to happen right after the LG logo appears or it happens when the boot process has finished.
I am guessing that boot_cpus=0-0 and 0 are not working. I can guess that because of the speed the animated logo appears. WHen it set it like max_cpus=1 it only boots and works on one core.
WHat i want is to boot with one core and later automatically switch to 4 cores when the system has loaded.
maxcpus means: max available CPU cores (https://android.googlesource.com/ke...r0.2/Documentation/kernel-parameters.txt#1883)
boot_cpus means: these CPU cores (0,1,2,3,4,5) will be powered on/enabled on boot (https://android.googlesource.com/ke..._r0.2/Documentation/kernel-parameters.txt#544)
so when you set maxcpus=4 and boot_cpus=0 it will use 1 core on boot and you will need to enable (up to 4 cores) in android (e.g. by an app).
.