1# Copyright (c) 2020 Intel Corp. 2# SPDX-License-Identifier: Apache-2.0 3# 4# EDAC configuration options 5 6menuconfig EDAC 7 bool "Error Detection and Correction (EDAC) drivers" 8 help 9 Enable Error Detection and Correction (EDAC) driver. 10 11if EDAC 12 13config EDAC_ERROR_INJECT 14 bool "EDAC Error Injection mechanism" 15 help 16 Enable Error injection capability for test error checking 17 and reporting. Should not be enabled in production system. 18 19config EDAC_SHELL 20 bool "EDAC Shell" 21 depends on SHELL 22 default y if SHELL 23 help 24 Enable EDAC shell for debugging EDAC. 25 26config EDAC_IBECC 27 bool "In-Band ECC (IBECC)" 28 depends on X86 && PCIE 29 help 30 This option selects In-Band ECC (IBECC) IP support. 31 32module = EDAC 33module-str = edac 34source "subsys/logging/Kconfig.template.log_config" 35 36endif #EDAC 37