正常降级
适用于系统可用状态下,把固件(V8-A962T01-LF1V026.zip)放入 U 盘中,到设置界面选择升级即可。
强制刷机
适用于已经无法进入系统的情况
下载固件:V8-A962T01-LF1V026.zip
电视上电时,按住电视底边上三个按键的中间键(待机键)约20S, 屏上显示升级进度条,升级过程中底部电源指示灯缓慢闪烁。
参数设置
setprop persist.tcl.installapk.enable 1
setprop persist.tcl.debug.installapk 1
mount -o remount,rw /system
有用命令
getprop | grep tcl
pm list packages
截图
adb shell /system/bin/screencap -p /storage/sdcard0/download/screenshot.png
adb pull /storage/sdcard0/download/screenshot.png d:/screenshot.png
提权
tclsu
SuperSU
mkdir -p /storage/sdcard0/Download/SuperSu
busybox unzip /storage/sdcard0/Download/SuperSu.zip -d /storage/sdcard0/Download/SuperSu
mkdir -p /system/app/SuperSU
cp /storage/sdcard0/Download/SuperSU/common/Superuser.apk /system/app/SuperSU/SuperSU.apk
chmod 644 /system/app/SuperSU/SuperSU.apk
cp /storage/sdcard0/Download/SuperSU/common/Superuser.apk /system/app/Superuser.apk
chmod 644 /system/app/Superuser.apk
cp /storage/sdcard0/Download/SuperSU/common/install-recovery.sh /system/etc/install-recovery.sh
chmod 755 /system/etc/install-recovery.sh
rm /system/bin/install-recovery.sh
ln -s /system/etc/install-recovery.sh /system/bin/install-recovery.sh
cp /storage/sdcard0/Download/SuperSU/armv7/su /system/xbin/su
chmod 755 /system/xbin/su
mkdir -p /system/bin/.ext
cp /storage/sdcard0/Download/SuperSU/armv7/su /system/bin/.ext/.su
chmod 755 /system/bin/.ext/.su
cp /storage/sdcard0/Download/SuperSU/armv7/su /system/xbin/daemonsu
chmod 755 /system/xbin/daemonsu
cp /storage/sdcard0/Download/SuperSU/armv7/supolicy /system/xbin/supolicy
chmod 755 /system/xbin/supolicy
cp /storage/sdcard0/Download/SuperSU/armv7/libsupol.so /system/lib/libsupol.so
chmod 755 /system/lib/libsupol.so
cp /storage/sdcard0/Download/SuperSU/armv7/libsupol.so /system/lib64/libsupol.so
chmod 755 /system/lib64/libsupol.so
mv /system/bin/app_process /system/bin/app_process_original
mv /system/bin/app_process32 /system/bin/app_process_original
ln -s /system/xbin/daemonsu /system/bin/app_process
ln -s /system/xbin/daemonsu /system/bin/app_process32
mkdir -p /system/etc/init.d/
cp /storage/sdcard0/Download/SuperSU/common/99SuperSUDaemon /system/etc/init.d/99SuperSUDaemon
chmod 755 /system/etc/init.d/99SuperSUDaemon
touch /system/etc/.installed_su_daemon
echo 1 > /system/etc/.installed_su_daemon
chmod 644 /system/etc/.installed_su_daemon
/system/xbin/su --install
Android 代理
设置代理:
adb shell settings put global http_proxy ip:port
移除代理
adb shell settings delete global http_proxy
adb shell settings delete global global_http_proxy_host
adb shell settings delete global global_http_proxy_port
adb reboot
参考资料:
https://rocka.me/article/cursed-tcl-android-tv
https://rocka.me/static/file/cursed-android-tv/update-binary.txt