if i recall correctly, you need
in
# Console display driver support
CONFIG_FRAMEBUFFER_CONSOLE=y (not m)
I may be wrong, but i think this gets things going before modules are loaded, which you need at boot for the text
also you want
CONFIG_FB_VGA16=m
and
# Logo configuration
#
CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
CONFIG_LOGO_LINUX_CLUT224=y
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
so that you get that sweet penguin at the top during boot :>)
|