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