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