1# Copyright The Zephyr Project Contributors 2# SPDX-License-Identifier: Apache-2.0 3 4config VIDEO_SHELL 5 bool "Video shell" 6 depends on SHELL 7 help 8 This shell provides control and query commands for video drivers. 9 10if VIDEO_SHELL 11 12config VIDEO_SHELL_CTRL_NAME_SIZE 13 int "Maximum size for the control string identifier" 14 default 40 15 help 16 Video controls have a human-friendly name that is converted into a string identifier. 17 This Kconfig controls the maximum size of the string identifier after which the name 18 would be truncated. The default value is enough for all standard control names. 19 20endif 21