File tree Expand file tree Collapse file tree 9 files changed +4
-952
lines changed
subsys/shell/shell_module Expand file tree Collapse file tree 9 files changed +4
-952
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,8 +14,7 @@ CONFIG_NET_BUF_DATA_SIZE=128
1414CONFIG_IEEE802154=y
1515CONFIG_IEEE802154_RAW_MODE=y
1616
17- CONFIG_CONSOLE_HANDLER=y
18- CONFIG_CONSOLE_SHELL=y
17+ CONFIG_SHELL=y
1918CONFIG_KERNEL_SHELL=y
2019
2120CONFIG_NET_CONFIG_SETTINGS=y
Original file line number Diff line number Diff line change 11CONFIG_PRINTK=y
22CONFIG_SHELL=y
3- CONFIG_SERIAL=y
43CONFIG_KERNEL_SHELL=n
4+ CONFIG_SHELL_BACKEND_SERIAL=y
55CONFIG_OBJECT_TRACING=y
66CONFIG_THREAD_MONITOR=y
77CONFIG_INIT_STACKS=y
88CONFIG_BOOT_BANNER=n
99CONFIG_THREAD_NAME=y
1010CONFIG_LOG=n
1111CONFIG_SHELL_HISTORY=n
12- CONFIG_CONSOLE_SHELL_STACKSIZE =1024
12+ CONFIG_SHELL_STACK_SIZE =1024
1313CONFIG_SHELL_CMD_BUFF_SIZE=128
1414CONFIG_SHELL_WILDCARD=n
1515CONFIG_SHELL_FOREGROUND_CMDS=n
1616CONFIG_SHELL_DYNAMIC_CMDS=n
17+
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ add_subdirectory(debug)
33add_subdirectory (logging)
44add_subdirectory_ifdef(CONFIG_BT bluetooth)
55add_subdirectory_ifdef(CONFIG_CONSOLE_SUBSYS console)
6- add_subdirectory_ifdef(CONFIG_CONSOLE_SHELL shell)
76add_subdirectory_ifdef(CONFIG_SHELL shell)
87add_subdirectory_ifdef(CONFIG_CPLUSPLUS cpp)
98add_subdirectory_ifdef(CONFIG_DISK_ACCESS disk)
Original file line number Diff line number Diff line change 1212#include <zephyr.h>
1313#include <init.h>
1414#include "net/buf.h"
15- #include "shell/legacy_shell.h"
1615#include "mgmt/mgmt.h"
1716#include "mgmt/serial.h"
1817#include "mgmt/buf.h"
Original file line number Diff line number Diff line change 1- zephyr_include_directories_ifdef(CONFIG_CONSOLE_SHELL
2- ${ZEPHYR_BASE} /include /drivers
3- )
4-
5- zephyr_sources_ifdef(
6- CONFIG_CONSOLE_SHELL
7- shell_service.c
8- legacy_shell.c
9- )
10-
111add_subdirectory (modules)
122
133zephyr_sources_ifdef(
Original file line number Diff line number Diff line change 1010
1111menu "Shell Options"
1212
13- menuconfig CONSOLE_SHELL
14- bool "Enable legacy shell [ Experimental ]"
15- select CONSOLE_HANDLER
16- select CONSOLE_SUBSYS
17- help
18- Shell implementation based on CONSOLE_HANDLER.
19-
20-
21- if CONSOLE_SHELL
22-
23- config CONSOLE_SHELL_STACKSIZE
24- int "Console handler shell stack size"
25- default 2000
26- help
27- Stack size for the console handler shell.
28-
29- config CONSOLE_SHELL_MAX_CMD_QUEUED
30- int "Shell's command queue size"
31- default 3
32- help
33- Maximum size of the queue for input commands.
34-
35-
36- endif
37-
3813menuconfig SHELL
3914 bool "Enable shell"
4015 select LOG_RUNTIME_FILTERING
You can’t perform that action at this time.
0 commit comments