Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #
  2. # Logo configuration
  3. #
  4. menu "Logo configuration"
  5. config LOGO
  6. bool "Bootup logo"
  7. depends on FB || SGI_NEWPORT_CONSOLE
  8. config LOGO_LINUX_MONO
  9. bool "Standard black and white Linux logo"
  10. depends on LOGO
  11. default y
  12. config LOGO_LINUX_VGA16
  13. bool "Standard 16-color Linux logo"
  14. depends on LOGO
  15. default y
  16. config LOGO_LINUX_CLUT224
  17. bool "Standard 224-color Linux logo"
  18. depends on LOGO
  19. default y
  20. config LOGO_DEC_CLUT224
  21. bool "224-color Digital Equipment Corporation Linux logo"
  22. depends on LOGO && (MACH_DECSTATION || ALPHA)
  23. default y
  24. config LOGO_MAC_CLUT224
  25. bool "224-color Macintosh Linux logo"
  26. depends on LOGO && MAC
  27. default y
  28. config LOGO_PARISC_CLUT224
  29. bool "224-color PA-RISC Linux logo"
  30. depends on LOGO && PARISC
  31. default y
  32. config LOGO_SGI_CLUT224
  33. bool "224-color SGI Linux logo"
  34. depends on LOGO && (SGI_IP22 || SGI_IP27 || SGI_IP32 || X86_VISWS)
  35. default y
  36. config LOGO_SUN_CLUT224
  37. bool "224-color Sun Linux logo"
  38. depends on LOGO && (SPARC32 || SPARC64)
  39. default y
  40. config LOGO_SUPERH_MONO
  41. bool "Black and white SuperH Linux logo"
  42. depends on LOGO && SUPERH
  43. default y
  44. config LOGO_SUPERH_VGA16
  45. bool "16-color SuperH Linux logo"
  46. depends on LOGO && SUPERH
  47. default y
  48. config LOGO_SUPERH_CLUT224
  49. bool "224-color SuperH Linux logo"
  50. depends on LOGO && SUPERH
  51. default y
  52. endmenu