mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 05:52:44 +01:00
sys/shell: Add module to Kconfig
This commit is contained in:
parent
a66f7fd61f
commit
fb282c37e1
@ -13,9 +13,10 @@ rsource "net/Kconfig"
|
||||
rsource "Kconfig.newlib"
|
||||
rsource "Kconfig.stdio"
|
||||
rsource "pm_layered/Kconfig"
|
||||
rsource "shell/Kconfig"
|
||||
rsource "test_utils/Kconfig"
|
||||
rsource "usb/Kconfig"
|
||||
rsource "tsrb/Kconfig"
|
||||
rsource "usb/Kconfig"
|
||||
rsource "xtimer/Kconfig"
|
||||
|
||||
config MODULE_SYS
|
||||
|
13
sys/shell/Kconfig
Normal file
13
sys/shell/Kconfig
Normal file
@ -0,0 +1,13 @@
|
||||
# Copyright (c) 2020 HAW Hamburg
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU Lesser
|
||||
# General Public License v2.1. See the file LICENSE in the top level
|
||||
# directory for more details.
|
||||
#
|
||||
|
||||
menuconfig MODULE_SHELL
|
||||
bool "Shell interpreter"
|
||||
select MODULE_STDIN
|
||||
depends on TEST_KCONFIG
|
||||
|
||||
rsource "commands/Kconfig"
|
10
sys/shell/commands/Kconfig
Normal file
10
sys/shell/commands/Kconfig
Normal file
@ -0,0 +1,10 @@
|
||||
# Copyright (c) 2020 HAW Hamburg
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU Lesser
|
||||
# General Public License v2.1. See the file LICENSE in the top level
|
||||
# directory for more details.
|
||||
#
|
||||
|
||||
config MODULE_SHELL_COMMANDS
|
||||
bool "Basic shell commands"
|
||||
depends on MODULE_SHELL
|
Loading…
Reference in New Issue
Block a user