This moves the shell component into its own subsys and groups all related files and options into a single place. Additionally, one Kconfig option will now be required to enable the shell: CONFIG_CONSOLE_SHELL=y The header files was also moved to include/shell/shell.h and can be now referenced with #include <shell/shell.h> instead of #include <misc/shell.h> Updated documentation as well. Change-Id: Iffbba4acfa05408055e9fd28dffa213451351f94 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
7 lines
288 B
Makefile
7 lines
288 B
Makefile
obj-$(CONFIG_UART_CONSOLE) += uart_console.o
|
|
obj-$(CONFIG_RAM_CONSOLE) += ram_console.o
|
|
obj-$(CONFIG_RTT_CONSOLE) += rtt_console.o
|
|
obj-$(CONFIG_IPM_CONSOLE_RECEIVER) += ipm_console_receiver.o
|
|
obj-$(CONFIG_IPM_CONSOLE_SENDER) += ipm_console_sender.o
|
|
obj-$(CONFIG_UART_PIPE) += uart_pipe.o
|