Update Kconfig

This commit is contained in:
OnlyCR7 2024-11-02 00:56:26 +05:30 committed by GitHub
parent c426456857
commit 9025dc1cb3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

34
Kconfig
View File

@ -1,32 +1,34 @@
# SPDX-License-Identifier: GPL-2.0
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.rst.
# Kernel Configuration Main Menu
# For syntax details, see Documentation/kbuild/kconfig-language.rst.
#
mainmenu "Linux/$(ARCH) $(KERNELVERSION) Kernel Configuration"
# Common includes for setup and initialization
source "scripts/Kconfig.include"
source "init/Kconfig"
# Core kernel modules and features
source "kernel/Kconfig.freezer"
source "mm/Kconfig" # Memory Management
source "fs/Kconfig.binfmt"
source "mm/Kconfig"
# Filesystems configurations
source "fs/Kconfig.binfmt" # Binary Format Support
source "fs/Kconfig" # General Filesystem Options
# Network configurations
source "net/Kconfig"
source "drivers/Kconfig"
# Drivers, Security, and Cryptography options
source "drivers/Kconfig" # Device Drivers
source "security/Kconfig" # Security Features
source "crypto/Kconfig" # Cryptography Support
source "fs/Kconfig"
source "security/Kconfig"
source "crypto/Kconfig"
source "lib/Kconfig"
source "lib/Kconfig.debug"
# Libraries and Debugging tools
source "lib/Kconfig" # Core Libraries
source "lib/Kconfig.debug" # Debugging Options
# Documentation-specific options
source "Documentation/Kconfig"