ImCoSys imcoV6L is a new ereader with android 2.3.1 see forum.xda-developers.com/showthread.php?t=2662999
You need ADB:
get the original images:
change the png with your favorite painting program.
Write them back:
Details: mount remounts the system-partition rw and at the end again ro (read-only).
After reboot you will see the new images:
You need ADB:
get the original images:
Code:
$ adb pull adb pull /system/logo/ logo/Write them back:
Code:
$ adb shell "mount -o rw,remount /dev/block/mtdblock8 /system"
$ adb push shutdown.png /system/logo/
$ adb push standby.png /system/logo/
$ adb shell "mount -o ro,remount /dev/block/mtdblock8 /system"After reboot you will see the new images:
Code:
$ adb shell "shutdown -r now"