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