2017-04-03 01:54:23 +08:00
|
|
|
# Kconfig - Display drivers
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2017 Intel Corporation
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
2017-10-06 14:34:43 +08:00
|
|
|
menuconfig DISPLAY
|
|
|
|
bool
|
|
|
|
prompt "Display Drivers"
|
|
|
|
default n
|
2017-04-03 01:54:23 +08:00
|
|
|
help
|
2017-10-06 14:34:43 +08:00
|
|
|
Enable display drivers
|
2017-04-03 01:54:23 +08:00
|
|
|
|
2017-10-06 14:34:43 +08:00
|
|
|
if DISPLAY
|
2017-04-04 18:01:22 +08:00
|
|
|
|
2017-10-06 14:34:43 +08:00
|
|
|
source "drivers/display/Kconfig.microbit"
|
2017-04-04 18:01:22 +08:00
|
|
|
|
2017-10-06 14:34:43 +08:00
|
|
|
source "drivers/display/Kconfig.ili9340"
|
2017-04-04 18:01:22 +08:00
|
|
|
|
2017-10-06 14:34:43 +08:00
|
|
|
endif # DISPLAY
|