Chan, Dominic wrote:
Does any know how to convert a graphics file (either png or gif) to the linux lss format? I try a tool call gif2lss without much lucky
Take a peek at the way anaconda does it from anaconda-9.0/scripts/mk-images.i386 line 24:
pngtopnm $BOOTDISKDIR/syslinux-splash.png | LANG=C ppmtolss16 \#000000=0 \#cdcfd5=7 \#c90000=2 \#ffffff=15 \#5b6c93=9 > $BOOTDISKDIR/splash.lss
It converts syslinux-splash.png to splash.lss Forrest