1# Configuration options for dummy display 2 3# Copyright (c) 2018 Jan Van Winkel <jan.van_winkel@dxplore.eu> 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig DUMMY_DISPLAY 7 bool "Dummy display driver" 8 help 9 Enable dummy display driver compliant with display driver API. 10 11if DUMMY_DISPLAY 12 13config DUMMY_DISPLAY_DEV_NAME 14 string "Dummy display device name" 15 default "DUMMY_DISPLAY" 16 17config DUMMY_DISPLAY_X_RES 18 int "X resolution for dummy display" 19 default 320 20 21config DUMMY_DISPLAY_Y_RES 22 int "Y resolution for dummy display" 23 default 240 24 25endif # DUMMY_DISPLAY 26