Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Logo configuration
  4. #
  5. menuconfig LOGO
  6. bool "Bootup logo"
  7. depends on FB_CORE || SGI_NEWPORT_CONSOLE
  8. help
  9. Enable and select frame buffer bootup logos.
  10. Monochrome logos will also be used by the DRM panic handler, if
  11. enabled.
  12. if LOGO
  13. config FB_LOGO_EXTRA
  14. bool
  15. depends on FB=y
  16. default y if SPU_BASE
  17. config LOGO_LINUX_MONO
  18. bool "Standard black and white Linux logo"
  19. default y
  20. config LOGO_LINUX_VGA16
  21. bool "Standard 16-color Linux logo"
  22. default y
  23. config LOGO_LINUX_CLUT224
  24. bool "Standard 224-color Linux logo"
  25. default y
  26. config LOGO_DEC_CLUT224
  27. bool "224-color Digital Equipment Corporation Linux logo"
  28. depends on MACH_DECSTATION || ALPHA
  29. default y
  30. config LOGO_MAC_CLUT224
  31. bool "224-color Macintosh Linux logo"
  32. depends on MAC
  33. default y
  34. config LOGO_PARISC_CLUT224
  35. bool "224-color PA-RISC Linux logo"
  36. depends on PARISC
  37. default y
  38. config LOGO_SGI_CLUT224
  39. bool "224-color SGI Linux logo"
  40. depends on SGI_IP22 || SGI_IP27 || SGI_IP32
  41. default y
  42. config LOGO_SUN_CLUT224
  43. bool "224-color Sun Linux logo"
  44. depends on SPARC
  45. default y
  46. config LOGO_SUPERH_MONO
  47. bool "Black and white SuperH Linux logo"
  48. depends on SUPERH
  49. default y
  50. config LOGO_SUPERH_VGA16
  51. bool "16-color SuperH Linux logo"
  52. depends on SUPERH
  53. default y
  54. config LOGO_SUPERH_CLUT224
  55. bool "224-color SuperH Linux logo"
  56. depends on SUPERH
  57. default y
  58. endif # LOGO