1config DEFCONFIG_LIST
2	string
3	option defconfig_list
4	default "arch/$ARCH/defconfig"
5
6# UML uses the generic IRQ subsystem
7config GENERIC_HARDIRQS
8	bool
9	default y
10
11config UML
12	bool
13	default y
14
15config MMU
16	bool
17	default y
18
19config NO_IOMEM
20	def_bool y
21
22mainmenu "Linux/Usermode Kernel Configuration"
23
24config ISA
25	bool
26
27config SBUS
28	bool
29
30config PCI
31	bool
32
33config PCMCIA
34	bool
35
36# Yet to do!
37config TRACE_IRQFLAGS_SUPPORT
38	bool
39	default n
40
41config LOCKDEP_SUPPORT
42	bool
43	default y
44
45config STACKTRACE_SUPPORT
46	bool
47	default n
48
49config GENERIC_CALIBRATE_DELAY
50	bool
51	default y
52
53config GENERIC_BUG
54	bool
55	default y
56	depends on BUG
57
58config GENERIC_CLOCKEVENTS
59	bool
60	default y
61
62# Used in kernel/irq/manage.c and include/linux/irq.h
63config IRQ_RELEASE_METHOD
64	bool
65	default y
66
67config HZ
68	int
69	default 100
70
71config SUBARCH
72	string
73	option env="SUBARCH"
74