Funny because I did this, I cycled through all the images(in cycle mode), found the one and only which was crashing the ss, all the other images were loading ok on sleep. I deleted the broken on, restarted and voila, it broke again
EDIT: I think I found the problem. I delete the broken image, but when I restart the framework I'm still in /mnt/us/linkss/screensavers in the ssh( I try to exit it but forget sometimes) and the device probably is not able to umount /usr/share/blanket/screensaver, the file handler for the image remains open(wild guess) there and although the image is deleted its still used(somehow). Probably /mnt/us/linkss/screensavers remains mounted over and over.. old handlers stay open?(wild guess)
Restarting the device fixes this...
so
Code:
for file in bg_*.png ; do
convert ${file} -filter LanczosSharp \
-resize 758x1024 \
-background black -gravity center \
-extent 758x1024 \
-colorspace Gray \
-dither FloydSteinberg \
-remap ~SVN/Configs/trunk/Kindle/Touch_Hacks/ScreenSavers/src/linkss/etc/kindle_colors.gif \
-quality 75 -define png:color-type=0 -define png:bit-depth=8 _${file}
done
Which options are mandatory for the fix and which are just 'optional'?
./src/linkss/etc/kindle_colors.gif from the kindle-linkss-0.24.N-r12672.tar.xz?