linux/arch/um/Kconfig.common
<<
>>
Prefs
   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_TIME
  59        bool
  60        default y
  61
  62config GENERIC_CLOCKEVENTS
  63        bool
  64        default y
  65
  66# Used in kernel/irq/manage.c and include/linux/irq.h
  67config IRQ_RELEASE_METHOD
  68        bool
  69        default y
  70
  71config HZ
  72        int
  73        default 100
  74
  75config SUBARCH
  76        string
  77        option env="SUBARCH"
  78