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 MODULES_USE_ELF_REL 16 17choice 18 prompt "System type" 19 default MACH_SPCT6600 20 21config ARCH_SCORE7 22 bool "SCORE7 processor" 23 select SYS_SUPPORTS_32BIT_KERNEL 24 select CPU_SCORE7 25 select GENERIC_HAS_IOMAP 26 27config MACH_SPCT6600 28 bool "SPCT6600 series based machines" 29 select SYS_SUPPORTS_32BIT_KERNEL 30 select CPU_SCORE7 31 select GENERIC_HAS_IOMAP 32 33config SCORE_SIM 34 bool "Score simulator" 35 select SYS_SUPPORTS_32BIT_KERNEL 36 select CPU_SCORE7 37 select GENERIC_HAS_IOMAP 38endchoice 39 40endmenu 41 42config CPU_SCORE7 43 bool 44 45config NO_DMA 46 bool 47 default y 48 49config RWSEM_GENERIC_SPINLOCK 50 def_bool y 51 52config GENERIC_HWEIGHT 53 def_bool y 54 55config GENERIC_CALIBRATE_DELAY 56 def_bool y 57 58menu "Kernel type" 59 60config 32BIT 61 def_bool y 62 63config ARCH_FLATMEM_ENABLE 64 def_bool y 65 66source "mm/Kconfig" 67 68config MEMORY_START 69 hex 70 default 0xa0000000 71 72source "kernel/Kconfig.hz" 73source "kernel/Kconfig.preempt" 74 75endmenu 76 77config RWSEM_GENERIC_SPINLOCK 78 def_bool y 79 80config LOCKDEP_SUPPORT 81 def_bool y 82 83config STACKTRACE_SUPPORT 84 def_bool y 85 86source "init/Kconfig" 87 88config MMU 89 def_bool y 90 91menu "Executable file formats" 92 93source "fs/Kconfig.binfmt" 94 95endmenu 96 97source "net/Kconfig" 98 99source "drivers/Kconfig" 100 101source "fs/Kconfig" 102 103source "arch/score/Kconfig.debug" 104 105source "security/Kconfig" 106 107source "crypto/Kconfig" 108 109source "lib/Kconfig" 110

