1# Shell configuration options 2 3# Copyright (c) 2016 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6config DEVICE_SHELL 7 bool "Device shell" 8 default y if !SHELL_MINIMAL 9 help 10 This shell provides access to basic device data. 11 12config DEVICE_SHELL_INIT_CMD 13 bool "Device shell init command" 14 depends on DEVICE_SHELL 15 default y if !SHELL_MINIMAL 16 help 17 Add an 'init' command to the device shell module in order 18 to initialize, at runtime and manually, the devices that 19 own the 'zephyr,deferred-init' attribute. Note that if you 20 enable CONFIG_DEVICE_DEPS, it will take dependencies into 21 account. 22 23config DATE_SHELL 24 bool "Date shell" 25 default y if !SHELL_MINIMAL 26 help 27 This shell provides access to date and time based on Unix time. 28 29config DEVMEM_SHELL 30 bool "Devmem shell" 31 default y if !SHELL_MINIMAL 32 select POSIX_C_LIB_EXT 33 help 34 This shell command provides read/write access to physical memory. 35 36config APP_VERSION_SHELL 37 bool "Application version information shell" 38 default y if !SHELL_MINIMAL 39 depends on "$(APP_VERSION_EXTENDED_STRING)" != "" 40 help 41 This shell command provides read access to application version information. 42 43rsource "kernel_service/Kconfig" 44