| 1234567891011121314151617181920212223242526272829303132 | 
							- # Display drivers
 
- # Copyright (c) 2017 Intel Corporation
 
- # SPDX-License-Identifier: Apache-2.0
 
- menuconfig DISPLAY
 
- 	bool "Display Drivers"
 
- 	help
 
- 	  Enable display drivers
 
- if DISPLAY
 
- config DISPLAY_INIT_PRIORITY
 
- 	int "Display devices init priority"
 
- 	default 85
 
- 	help
 
- 	  Display devices initialization priority.
 
- module = DISPLAY
 
- module-str = display
 
- source "subsys/logging/Kconfig.template.log_config"
 
- source "drivers/display/Kconfig.st7789v"
 
- source "drivers/display/Kconfig.acts"
 
- config FRAMEBUF_DISPLAY
 
- 	# Hidden, selected by client drivers.
 
- 	bool
 
- 	help
 
- 	  Enable framebuffer-based display 'helper' driver.
 
- endif # DISPLAY
 
 
  |