I'm evaluating the yocto linux distro on the sabresd board with i.mx6Quad processor.
Now I want to test the performance with a dual core processor.
How can I switch off 2 cores to get the dual core performance tested?
解決済! 解決策の投稿を見る。
You can disable cores in /sys/devices/system/cpu
For instance to disable CPU2 : echo 0 > /sys/devices/system/cpu/cpu2/online
You can disable cores in /sys/devices/system/cpu
For instance to disable CPU2 : echo 0 > /sys/devices/system/cpu/cpu2/online
Thanks - that's it!