[ltp] Grub graphic boot images

Brad Stockdale linux-thinkpad@linux-thinkpad.org
Thu, 6 Feb 2003 15:52:19 -0500 (EST)


Here's another tip I found while searching around... Try this to convert 
your current jpg's into ones like GRUB expects:

convert \
	-size 800x600 \
	file.jpg \
	-resize 640x480 \
	-colors 15 \
	-profile "*"
	file.xpm

gzip file.xpm

But that once again limits you to a low number of colors... Until GRUB can 
get rid of that, then we'll have to use what we have...

Brad