1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

shell/Kconfig: fix SHELL_SHUTDOWN_ON_EXIT dependency

Symbol `CPU_NATIVE` does not exist within Kconfig.
This commit is contained in:
Martine Lenders 2021-02-17 17:20:40 +01:00
parent 77035d6df3
commit e740e75f1d
No known key found for this signature in database
GPG Key ID: CCD317364F63286F

View File

@ -20,7 +20,7 @@ if KCONFIG_USEMODULE_SHELL
config SHELL_SHUTDOWN_ON_EXIT
bool "Shutdown RIOT on shell exit"
default y if CPU_NATIVE
default y if HAS_CPU_NATIVE
help
Some systems (e.g Ubuntu 20.04) close stdin on CTRL-D / EOF
That means we can't just re-start the shell.