mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 11:32:04 +00:00
316240f66a
This patch is for supporting Epson s1d13xxx framebuffer device for m32r. # Sorry, a little bigger. The Epson s1d13806 is already supported by 2.6.12 kernel, and its driver is placed as drivers/video/s1d13xxxfb.c. For the m32r, a header file include/asm-m32r/s1d13806.h was prepared for several m32r target platforms. It was originally generated by an Epson tool S1D13806CFG.EXE, and modified manually for the m32r platforms. Signed-off-by: Hayato Fujiwara <fujiwara@linux-m32r.org> Signed-off-by: Hirokazu Takata <takata@linux-m32r.org> Cc: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
73 lines
1.4 KiB
Plaintext
73 lines
1.4 KiB
Plaintext
#
|
|
# Logo configuration
|
|
#
|
|
|
|
menu "Logo configuration"
|
|
|
|
config LOGO
|
|
bool "Bootup logo"
|
|
depends on FB || SGI_NEWPORT_CONSOLE
|
|
|
|
config LOGO_LINUX_MONO
|
|
bool "Standard black and white Linux logo"
|
|
depends on LOGO
|
|
default y
|
|
|
|
config LOGO_LINUX_VGA16
|
|
bool "Standard 16-color Linux logo"
|
|
depends on LOGO
|
|
default y
|
|
|
|
config LOGO_LINUX_CLUT224
|
|
bool "Standard 224-color Linux logo"
|
|
depends on LOGO
|
|
default y
|
|
|
|
config LOGO_DEC_CLUT224
|
|
bool "224-color Digital Equipment Corporation Linux logo"
|
|
depends on LOGO && (MACH_DECSTATION || ALPHA)
|
|
default y
|
|
|
|
config LOGO_MAC_CLUT224
|
|
bool "224-color Macintosh Linux logo"
|
|
depends on LOGO && MAC
|
|
default y
|
|
|
|
config LOGO_PARISC_CLUT224
|
|
bool "224-color PA-RISC Linux logo"
|
|
depends on LOGO && PARISC
|
|
default y
|
|
|
|
config LOGO_SGI_CLUT224
|
|
bool "224-color SGI Linux logo"
|
|
depends on LOGO && (SGI_IP22 || SGI_IP27 || SGI_IP32 || X86_VISWS)
|
|
default y
|
|
|
|
config LOGO_SUN_CLUT224
|
|
bool "224-color Sun Linux logo"
|
|
depends on LOGO && (SPARC32 || SPARC64)
|
|
default y
|
|
|
|
config LOGO_SUPERH_MONO
|
|
bool "Black and white SuperH Linux logo"
|
|
depends on LOGO && SUPERH
|
|
default y
|
|
|
|
config LOGO_SUPERH_VGA16
|
|
bool "16-color SuperH Linux logo"
|
|
depends on LOGO && SUPERH
|
|
default y
|
|
|
|
config LOGO_SUPERH_CLUT224
|
|
bool "224-color SuperH Linux logo"
|
|
depends on LOGO && SUPERH
|
|
default y
|
|
|
|
config LOGO_M32R_CLUT224
|
|
bool "224-color M32R Linux logo"
|
|
depends on LOGO && M32R
|
|
default y
|
|
|
|
endmenu
|
|
|