Linux Audio

Check our new training course

Loading...
Note: File does not exist in v6.2.
 1# SPDX-License-Identifier: GPL-2.0
 2config UML
 3	bool
 4	default y
 5	select ARCH_HAS_KCOV
 6	select HAVE_ARCH_AUDITSYSCALL
 7	select HAVE_ARCH_SECCOMP_FILTER
 8	select HAVE_UID16
 9	select HAVE_FUTEX_CMPXCHG if FUTEX
10	select HAVE_DEBUG_KMEMLEAK
11	select GENERIC_IRQ_SHOW
12	select GENERIC_CPU_DEVICES
13	select GENERIC_CLOCKEVENTS
14	select HAVE_GCC_PLUGINS
15	select TTY # Needed for line.c
16
17config MMU
18	bool
19	default y
20
21config NO_IOMEM
22	def_bool y
23
24config ISA
25	bool
26
27config SBUS
28	bool
29
30config PCI
31	bool
32
33config PCMCIA
34	bool
35
36config TRACE_IRQFLAGS_SUPPORT
37	bool
38	default y
39
40config LOCKDEP_SUPPORT
41	bool
42	default y
43
44config STACKTRACE_SUPPORT
45	bool
46	default y
47	select STACKTRACE
48
49config GENERIC_CALIBRATE_DELAY
50	bool
51	default y
52
53config HZ
54	int
55	default 100
56
57config SUBARCH
58	string
59	option env="SUBARCH"
60
61config NR_CPUS
62	int
63	range 1 1
64	default 1