forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
35 lines (28 loc) · 771 Bytes
/
Kconfig
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
# Copyright (c) 2020 Intel Corp.
# SPDX-License-Identifier: Apache-2.0
#
# EDAC configuration options
menuconfig EDAC
bool "Error Detection and Correction (EDAC) drivers"
help
Enable Error Detection and Correction (EDAC) driver.
if EDAC
config EDAC_ERROR_INJECT
bool "EDAC Error Injection mechanism"
help
Enable Error injection capability for test error checking
and reporting. Should not be enabled in production system.
config EDAC_SHELL
bool "EDAC Shell"
depends on SHELL
help
Enable EDAC shell for debugging EDAC.
config EDAC_IBECC
bool "In-Band ECC (IBECC)"
depends on X86 && PCIE
help
This option selects In-Band ECC (IBECC) IP support.
module = EDAC
module-str = edac
source "subsys/logging/Kconfig.template.log_config"
endif #EDAC