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