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 HAVE_UID16 11 select GENERIC_IRQ_SHOW 12 select GENERIC_CPU_DEVICES 13 select GENERIC_IO 14 select GENERIC_CLOCKEVENTS 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 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 HZ 59 int 60 default 100 61 62config SUBARCH 63 string 64 option env="SUBARCH" 65

