24 lines
600 B
Plaintext
24 lines
600 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see Documentation/kbuild/kconfig-language.txt.
|
|
#
|
|
mainmenu "Linux/$(ARCH) $(KERNELVERSION) Kernel Configuration"
|
|
|
|
comment "Compiler: $(CC_VERSION_TEXT)"
|
|
|
|
source "scripts/Kconfig.include"
|
|
|
|
source "arch/$(SRCARCH)/Kconfig"
|
|
|
|
source "Kconfig.redhat"
|
|
|
|
config RH_KABI_SIZE_ALIGN_CHECKS
|
|
bool "Enables more stringent kabi checks in the macros"
|
|
default y
|
|
help
|
|
This option enables more stringent kabi checks. Those must be disable
|
|
in case of a debug-build because they allow to change struct sizes.
|
|
|
|
|