Hi all,
I've already posted this in the NCR 3.1 thread but for convenience of future reference I think it deserves its own thread as this is a problem many people are facing.
Most likely I'm not the only person getting annoyed by the screen scaling not being persistent (sticking after a reboot) so I decided to try to figure out how to fix it.
I've succeeded in doing this.
Here's how:
[METHOD 1, using Script Manager]
1. create a file, I've called mine scaler.sh
2. copy/paste this code into it:
echo xscale=100 > /sys/devices/platform/rk-fb/graphics/fb0/scale echo yscale=100 > /sys/devices/platform/rk-fb/graphics/fb0/scale
chmod 777 yourfile example: chmod 777 scaler.sh
5. Start SM and navigate to the script you've created in step 3
6. Select run as root and run on boot in SM.
7. Save and exit SM
8. Reboot
[METHOD 2, using init.d -> advantage: screen scale is correct immediatly!]
1. Download and install Root Browser
2. Navigate to /system/etc/init.d
3. Open file: 99SuperSUDaemon and add this code to the end of the file:
echo xscale=100 > /sys/devices/platform/rk-fb/graphics/fb0/scale echo yscale=100 > /sys/devices/platform/rk-fb/graphics/fb0/scale
That's it, when using method 1 the screen will re-scale after boot automatically, when using method 2 the screen will have the correct scale immediatly.
Hope this helps some people who are having the same issue.
ENJOY!
Regards
Comment