1menu "Machine selection" 2 3config SCORE 4 def_bool y 5 select HAVE_GENERIC_HARDIRQS 6 select GENERIC_IRQ_SHOW 7 8choice 9 prompt "System type" 10 default MACH_SPCT6600 11 12config ARCH_SCORE7 13 bool "SCORE7 processor" 14 select SYS_SUPPORTS_32BIT_KERNEL 15 select CPU_SCORE7 16 select GENERIC_HAS_IOMAP 17 18config MACH_SPCT6600 19 bool "SPCT6600 series based machines" 20 select SYS_SUPPORTS_32BIT_KERNEL 21 select CPU_SCORE7 22 select GENERIC_HAS_IOMAP 23 24config SCORE_SIM 25 bool "Score simulator" 26 select SYS_SUPPORTS_32BIT_KERNEL 27 select CPU_SCORE7 28 select GENERIC_HAS_IOMAP 29endchoice 30 31endmenu 32 33config CPU_SCORE7 34 bool 35 36config GENERIC_IOMAP 37 def_bool y 38 39config NO_DMA 40 bool 41 default y 42 43config RWSEM_GENERIC_SPINLOCK 44 def_bool y 45 46config GENERIC_FIND_NEXT_BIT 47 def_bool y 48 49config GENERIC_HWEIGHT 50 def_bool y 51 52config GENERIC_CALIBRATE_DELAY 53 def_bool y 54 55config GENERIC_CLOCKEVENTS 56 def_bool y 57 58config SCHED_NO_NO_OMIT_FRAME_POINTER 59 def_bool y 60 61config GENERIC_SYSCALL_TABLE 62 def_bool y 63 64config SCORE_L1_CACHE_SHIFT 65 int 66 default "4" 67 68menu "Kernel type" 69 70config 32BIT 71 def_bool y 72 73config ARCH_FLATMEM_ENABLE 74 def_bool y 75 76config ARCH_POPULATES_NODE_MAP 77 def_bool y 78 79source "mm/Kconfig" 80 81config MEMORY_START 82 hex 83 default 0xa0000000 84 85source "kernel/time/Kconfig" 86source "kernel/Kconfig.hz" 87source "kernel/Kconfig.preempt" 88 89endmenu 90 91config RWSEM_GENERIC_SPINLOCK 92 def_bool y 93 94config LOCKDEP_SUPPORT 95 def_bool y 96 97config STACKTRACE_SUPPORT 98 def_bool y 99 100source "init/Kconfig" 101 102config PROBE_INITRD_HEADER 103 bool "Probe initrd header created by addinitrd" 104 depends on BLK_DEV_INITRD 105 help 106 Probe initrd header at the last page of kernel image. 107 Say Y here if you are using arch/score/boot/addinitrd.c to 108 add initrd or initramfs image to the kernel image. 109 Otherwise, say N. 110 111config MMU 112 def_bool y 113 114menu "Executable file formats" 115 116source "fs/Kconfig.binfmt" 117 118endmenu 119 120source "net/Kconfig" 121 122source "drivers/Kconfig" 123 124source "fs/Kconfig" 125 126source "arch/score/Kconfig.debug" 127 128source "security/Kconfig" 129 130source "crypto/Kconfig" 131 132source "lib/Kconfig" 133