summaryrefslogtreecommitdiff
path: root/zephyr/Kconfig.defaults
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/Kconfig.defaults')
-rw-r--r--zephyr/Kconfig.defaults15
1 files changed, 14 insertions, 1 deletions
diff --git a/zephyr/Kconfig.defaults b/zephyr/Kconfig.defaults
index a92971b3c7..ded7516748 100644
--- a/zephyr/Kconfig.defaults
+++ b/zephyr/Kconfig.defaults
@@ -1,4 +1,4 @@
-# Copyright 2021 The Chromium OS Authors. All rights reserved.
+# Copyright 2021 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -9,6 +9,10 @@
config TIMESLICING
default n
+config LOG
+ default y
+ imply LOG_DEFAULT_MINIMAL
+
config GPIO_EMUL
default y if ARCH_POSIX
@@ -21,4 +25,13 @@ config THREAD_MAX_NAME_LEN
config SHELL_PROMPT_UART
default "ec:~$ "
+config SHELL_THREAD_PRIORITY_OVERRIDE
+ default y
+
+config SHELL_THREAD_PRIORITY
+ default 12 # track EC_SHELL_PRIO
+
+config EXTRA_EXCEPTION_INFO
+ default y if ARCH_HAS_EXTRA_EXCEPTION_INFO
+
orsource "Kconfig.defaults-$(ARCH)"