Joined
·
11 Posts
Thanks for the script! I ended up looking at the script to see exactly what was going on behind the scenes. Turns out that the convert .png to .img option has a typo
should be:
There is no error detection or a check to see if the file is there after the conversion, so you will always get a "Complete" message.
Also when I tried to flash the image through the script, the phone rebooted to the bootloader as expected but for some reason didn't flash the image. So I again looked at the script and ran the fastboot flash spash1 /path/to/file.img
I appreciate the time you spent on the script and hopefully it can be improved to make it even more n00b friendly!
I ended up using this image attached
Code:
ffmpeg -i $File_name.jpg -f rawvideo -pix_fmt rgb565 $File_name.img
Code:
ffmpeg -i $File_name.[B]png[/B] -f rawvideo -pix_fmt rgb565 $File_name.img
Also when I tried to flash the image through the script, the phone rebooted to the bootloader as expected but for some reason didn't flash the image. So I again looked at the script and ran the fastboot flash spash1 /path/to/file.img
I appreciate the time you spent on the script and hopefully it can be improved to make it even more n00b friendly!
I ended up using this image attached
Attachments
-
2.5 KB Views: 38