aca esta lasolucion via adb para el que la pruebe
Configure resolution:
With device connected to the PC do:
- adb root
- adb shell
- vi /data/ubuntu/usr/bin/ubuntu-session
- change the lines from 81 to 90 to match:
Quote:
else
services="/etc/tablet-services"
grep -q GRID_UNIT_PX /home/phablet/.bashrc
[ $? -ne 0 ] && echo "export GRID_UNIT_PX=10" >> /home/phablet/.bashrc
export GRID_UNIT_PX=10
grep -q QTWEBKIT_DPR /home/phablet/.bashrc
[ $? -ne 0 ] && echo "export QTWEBKIT_DPR=1.0" >> /home/phablet/.bashrc
export QTWEBKIT_DPR=1.0
export FORM_FACTOR="tablet"
fi
- reboot
Enable WIFI:
- adb root
- adb shell
- touch /data/local/userinit.sh
- vi /data/local/userinit.sh and put the following lines
Quote:
#!/system/bin/sh
insmod /system/lib/modules/dhd.ko firmware_path=/system/vendor/firmware/fw_bcmdhd_apsta.bin nvram_path=/system/etc/wifi/nvram_net.txt
- chmod 755 /data/local/userinit.sh
- reboot
|