What I did so far to achieve it is,
Run SSHDroid on the device.
Connect PC to device over ssh and,
# su # cd / # mount -o rw,remount /system # vi /system/build.prop Changed two lines to look like, const.window.w=1920 const.window.h=1080 Also commented out following line (although I don't think it made any difference) #ro.platform.has.1080scale=2 Then exit out of vi. # mount -o ro,remount /system Power cycle the device.
# su # echo 0 > /sys/class/graphics/fb0/free_scale # echo 0 > /sys/class/ppmgr/ppscaler
You can also switch back and forth between 720 and 1080 by doing "echo 0 > /sys/class/ppmgr/ppscaler" or "echo 1 > /sys/class/ppmgr/ppscaler"
Next, I'll try to fix the partial black screen or maybe try changing xbmc so it will run at 1080 while kernel stays at 720.
Comment