Now we all know this does not work
echo xscale=95 yscale=95 > /sys/devices/virtual/display/display0.HDMI/scale
The question is why doesn't it, and the answer is simple, when I looked in the source code of the kernel I found that they had changed a few things, you see everything created in sys folder comes from the kernel, so now the correct line is
echo 95 > /sys/class/graphics/fb0/scale
and to easily scale down your display just download this http://www.cloudstor.es/file/m1_NDk0MQ/ and put it in system/etc/init.d and reboot
I would just like to add here that I believe that everything can be solved by working together and not against each other. when developers share information with each other things get fixed a lot faster, and means that you the end user gets a better experience
Comment