mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 11:51:56 +00:00
Bool symbols implicitly default to 'n'. A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you want to override a 'default y' on the base definition of the symbol. It isn't used like that on any of these symbols though. Also replace some config prompt "foo" bool/int with the more common shorthand config bool/int "foo" See the 'Style recommendations and shorthands' section in https://docs.zephyrproject.org/latest/guides/kconfig/index.html. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
34 lines
788 B
Plaintext
34 lines
788 B
Plaintext
# Display drivers
|
|
|
|
# Copyright (c) 2017 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig DISPLAY
|
|
bool "Display Drivers"
|
|
help
|
|
Enable display drivers
|
|
|
|
if DISPLAY
|
|
|
|
module = DISPLAY
|
|
module-str = display
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/display/Kconfig.grove"
|
|
source "drivers/display/Kconfig.mcux_elcdif"
|
|
source "drivers/display/Kconfig.microbit"
|
|
source "drivers/display/Kconfig.ili9340"
|
|
source "drivers/display/Kconfig.sdl"
|
|
source "drivers/display/Kconfig.ssd1306"
|
|
source "drivers/display/Kconfig.ssd16xx"
|
|
source "drivers/display/Kconfig.st7789v"
|
|
source "drivers/display/Kconfig.dummy"
|
|
|
|
config FRAMEBUF_DISPLAY
|
|
# Hidden, selected by client drivers.
|
|
bool
|
|
help
|
|
Enable framebuffer-based display 'helper' driver.
|
|
|
|
endif # DISPLAY
|