linux/arch/h8300/Kconfig
<<
>>
Prefs
   1config H8300
   2        def_bool y
   3        select GENERIC_ATOMIC64
   4        select HAVE_UID16
   5        select VIRT_TO_BUS
   6        select GENERIC_IRQ_SHOW
   7        select FRAME_POINTER
   8        select GENERIC_CPU_DEVICES
   9        select MODULES_USE_ELF_RELA
  10        select GENERIC_CLOCKEVENTS
  11        select CLKDEV_LOOKUP
  12        select COMMON_CLK
  13        select ARCH_WANT_FRAME_POINTERS
  14        select OF
  15        select OF_IRQ
  16        select OF_EARLY_FLATTREE
  17        select HAVE_MEMBLOCK
  18        select HAVE_DMA_ATTRS
  19
  20config RWSEM_GENERIC_SPINLOCK
  21        def_bool y
  22
  23config GENERIC_HWEIGHT
  24        def_bool y
  25
  26config NO_IOPORT_MAP
  27        def_bool y
  28
  29config GENERIC_CSUM
  30        def_bool y
  31
  32config HZ
  33        int
  34        default 100
  35
  36config NR_CPUS
  37        int
  38        default 1
  39
  40source "init/Kconfig"
  41
  42source "kernel/Kconfig.freezer"
  43
  44source "arch/h8300/Kconfig.cpu"
  45
  46menu "Kernel Features"
  47
  48source "kernel/Kconfig.preempt"
  49
  50source "mm/Kconfig"
  51
  52endmenu
  53
  54menu "Executable file formats"
  55
  56source "fs/Kconfig.binfmt"
  57
  58endmenu
  59
  60source "net/Kconfig"
  61
  62source "drivers/Kconfig"
  63
  64source "fs/Kconfig"
  65
  66menu "Kernel hacking"
  67
  68source "lib/Kconfig.debug"
  69
  70endmenu
  71
  72source "security/Kconfig"
  73
  74source "crypto/Kconfig"
  75
  76source "lib/Kconfig"
  77