summaryrefslogtreecommitdiff
path: root/zephyr/Kconfig.defaults
blob: a7497ca9a4e6d7c9d58fa7aa61ffd2cafca283e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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.

# Zephyr Kconfig overrides that applies to all platforms.

# Disable timeslicing, it's compiled in by default and can be enabled at
# runtime but not used in Zephyr EC.
config TIMESLICING
	default n

config LOG
	default y
	imply LOG_DEFAULT_MINIMAL

config GPIO
	default y if ARCH_POSIX

config THREAD_MAX_NAME_LEN
	default 16

config SHELL_PROMPT_UART
	default "ec:~$ "

config SHELL_VT100_COLORS
	default n

config SHELL_THREAD_PRIORITY_OVERRIDE
	default y

config SHELL_THREAD_PRIORITY
	default 20

config EXTRA_EXCEPTION_INFO
	default y if ARCH_HAS_EXTRA_EXCEPTION_INFO

config EEPROM_SHELL
	default n

config PWM_SHELL
	default n

orsource "Kconfig.defaults-$(ARCH)"