Linux Audio

Check our new training course

Loading...
v3.1
 
 1#
 2# For a description of the syntax of this configuration file,
 3# see Documentation/kbuild/kconfig-language.txt.
 4#
 5mainmenu "Linux/$ARCH $KERNELVERSION Kernel Configuration"
 6
 7config SRCARCH
 8	string
 9	option env="SRCARCH"
10
11source "arch/$SRCARCH/Kconfig"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
v6.2
 1# SPDX-License-Identifier: GPL-2.0
 2#
 3# For a description of the syntax of this configuration file,
 4# see Documentation/kbuild/kconfig-language.rst.
 5#
 6mainmenu "Linux/$(ARCH) $(KERNELVERSION) Kernel Configuration"
 7
 8source "scripts/Kconfig.include"
 
 
 9
10source "init/Kconfig"
11
12source "kernel/Kconfig.freezer"
13
14source "fs/Kconfig.binfmt"
15
16source "mm/Kconfig"
17
18source "net/Kconfig"
19
20source "drivers/Kconfig"
21
22source "fs/Kconfig"
23
24source "security/Kconfig"
25
26source "crypto/Kconfig"
27
28source "lib/Kconfig"
29
30source "lib/Kconfig.debug"
31
32source "Documentation/Kconfig"