1
0
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:
Leandro Lanzieri 2020-04-29 12:39:33 +02:00
parent a66f7fd61f
commit fb282c37e1
No known key found for this signature in database
GPG Key ID: 13559905E2EBEAA5
3 changed files with 25 additions and 1 deletions

View File

@ -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
View 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"

View 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