|
需要把“开发者权限”弄出来,然后打开“usb debug”
$ adb push ~/Downloads/bootanimation.zip /mnt/sdcard
• On the device, remount the /system to writable, and copy the file:
$ mount -t ext4 -o rw,remount /dev/block/mmcblk0p5 /system
$ busybox cp /mnt/sdcard/bootanimation.zip /system/media/
$ mount -t ext4 -o ro,remount /dev/block/mmcblk0p5 /system |
|