Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v3.0 129 lines 2.0 kB view raw
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_HWEIGHT 47 def_bool y 48 49config GENERIC_CALIBRATE_DELAY 50 def_bool y 51 52config GENERIC_CLOCKEVENTS 53 def_bool y 54 55config SCHED_NO_NO_OMIT_FRAME_POINTER 56 def_bool y 57 58config GENERIC_SYSCALL_TABLE 59 def_bool y 60 61config SCORE_L1_CACHE_SHIFT 62 int 63 default "4" 64 65menu "Kernel type" 66 67config 32BIT 68 def_bool y 69 70config ARCH_FLATMEM_ENABLE 71 def_bool y 72 73config ARCH_POPULATES_NODE_MAP 74 def_bool y 75 76source "mm/Kconfig" 77 78config MEMORY_START 79 hex 80 default 0xa0000000 81 82source "kernel/time/Kconfig" 83source "kernel/Kconfig.hz" 84source "kernel/Kconfig.preempt" 85 86endmenu 87 88config RWSEM_GENERIC_SPINLOCK 89 def_bool y 90 91config LOCKDEP_SUPPORT 92 def_bool y 93 94config STACKTRACE_SUPPORT 95 def_bool y 96 97source "init/Kconfig" 98 99config 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 108config MMU 109 def_bool y 110 111menu "Executable file formats" 112 113source "fs/Kconfig.binfmt" 114 115endmenu 116 117source "net/Kconfig" 118 119source "drivers/Kconfig" 120 121source "fs/Kconfig" 122 123source "arch/score/Kconfig.debug" 124 125source "security/Kconfig" 126 127source "crypto/Kconfig" 128 129source "lib/Kconfig"