Kconfig 630 B

1234567891011121314151617181920212223242526272829303132
  1. # Display drivers
  2. # Copyright (c) 2017 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig DISPLAY
  5. bool "Display Drivers"
  6. help
  7. Enable display drivers
  8. if DISPLAY
  9. config DISPLAY_INIT_PRIORITY
  10. int "Display devices init priority"
  11. default 85
  12. help
  13. Display devices initialization priority.
  14. module = DISPLAY
  15. module-str = display
  16. source "subsys/logging/Kconfig.template.log_config"
  17. source "drivers/display/Kconfig.st7789v"
  18. source "drivers/display/Kconfig.acts"
  19. config FRAMEBUF_DISPLAY
  20. # Hidden, selected by client drivers.
  21. bool
  22. help
  23. Enable framebuffer-based display 'helper' driver.
  24. endif # DISPLAY