Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v3.14-rc1 115 lines 1.8 kB view raw
1menu "Machine selection" 2 3config SCORE 4 def_bool y 5 select GENERIC_IRQ_SHOW 6 select GENERIC_IOMAP 7 select GENERIC_ATOMIC64 8 select HAVE_MEMBLOCK 9 select HAVE_MEMBLOCK_NODE_MAP 10 select ARCH_DISCARD_MEMBLOCK 11 select GENERIC_CPU_DEVICES 12 select GENERIC_CLOCKEVENTS 13 select HAVE_MOD_ARCH_SPECIFIC 14 select VIRT_TO_BUS 15 select MODULES_USE_ELF_REL 16 select CLONE_BACKWARDS 17 18choice 19 prompt "System type" 20 default MACH_SPCT6600 21 22config ARCH_SCORE7 23 bool "SCORE7 processor" 24 select SYS_SUPPORTS_32BIT_KERNEL 25 select CPU_SCORE7 26 select GENERIC_HAS_IOMAP 27 28config MACH_SPCT6600 29 bool "SPCT6600 series based machines" 30 select SYS_SUPPORTS_32BIT_KERNEL 31 select CPU_SCORE7 32 select GENERIC_HAS_IOMAP 33 34config SCORE_SIM 35 bool "Score simulator" 36 select SYS_SUPPORTS_32BIT_KERNEL 37 select CPU_SCORE7 38 select GENERIC_HAS_IOMAP 39endchoice 40 41endmenu 42 43config CPU_SCORE7 44 bool 45 46config NO_DMA 47 bool 48 default y 49 50config RWSEM_GENERIC_SPINLOCK 51 def_bool y 52 53config GENERIC_HWEIGHT 54 def_bool y 55 56config GENERIC_CALIBRATE_DELAY 57 def_bool y 58 59menu "Kernel type" 60 61config 32BIT 62 def_bool y 63 64config ARCH_FLATMEM_ENABLE 65 def_bool y 66 67source "mm/Kconfig" 68 69config MEMORY_START 70 hex 71 default 0xa0000000 72 73source "kernel/Kconfig.hz" 74source "kernel/Kconfig.preempt" 75 76endmenu 77 78config RWSEM_GENERIC_SPINLOCK 79 def_bool y 80 81config LOCKDEP_SUPPORT 82 def_bool y 83 84config STACKTRACE_SUPPORT 85 def_bool y 86 87source "init/Kconfig" 88 89source "kernel/Kconfig.freezer" 90 91config MMU 92 def_bool y 93 94menu "Executable file formats" 95 96source "fs/Kconfig.binfmt" 97 98endmenu 99 100source "net/Kconfig" 101 102source "drivers/Kconfig" 103 104source "fs/Kconfig" 105 106source "arch/score/Kconfig.debug" 107 108source "security/Kconfig" 109 110source "crypto/Kconfig" 111 112source "lib/Kconfig" 113 114config NO_IOMEM 115 def_bool y