2 # For a description of the syntax of this configuration file,
3 # see Documentation/kbuild/kconfig-language.txt.
9 select GENERIC_ATOMIC64
10 select GENERIC_IRQ_SHOW
11 select HAVE_ARCH_TRACEHOOK
12 select HAVE_DMA_API_DEBUG
17 select OF_EARLY_FLATTREE
18 select GENERIC_CLOCKEVENTS
19 select MODULES_USE_ELF_RELA
20 select ARCH_NO_COHERENT_DMA_MMAP
28 config RWSEM_GENERIC_SPINLOCK
31 config GENERIC_CALIBRATE_DELAY
34 config GENERIC_HWEIGHT
42 bool "Build a big kernel"
44 The C6X function call instruction has a limited range of +/- 2MiB.
45 This is sufficient for most kernels, but some kernel configurations
46 with lots of compiled-in functionality may require a larger range
47 for function calls. Use this option to have the compiler generate
48 function calls with 32-bit range. This will make the kernel both
55 # Use the generic interrupt handling code in kernel/irq/
57 source "kernel/Kconfig.freezer"
60 bool "Default bootloader kernel arguments"
63 string "Kernel command line"
64 depends on CMDLINE_BOOL
65 default "console=ttyS0,57600"
67 On some architectures there is currently no way for the boot loader
68 to pass arguments to the kernel. For these architectures, you should
69 supply some command-line options at build time by entering them
73 bool "Force default kernel command string"
74 depends on CMDLINE_BOOL
77 Set this to have arguments from the default kernel command string
78 override those passed by the boot loader.
81 bool "Build big-endian kernel"
84 Say Y if you plan on running a kernel in big-endian mode.
85 Note that your board must be properly built and your board
86 port must properly enable any big-endian related features
87 of your chipset/board/processor.
89 config FORCE_MAX_ZONEORDER
90 int "Maximum zone order"
93 The kernel memory allocator divides physically contiguous memory
94 blocks into "zones", where each zone is a power of two number of
95 pages. This option selects the largest power of two that the kernel
96 keeps in the memory allocator. If you need to allocate very large
97 blocks of physically contiguous memory, then you may need to
100 This config option is actually maximum order plus one. For example,
101 a value of 11 means that the largest free memory block is 2^10 pages.
103 menu "Processor type and features"
105 source "arch/c6x/platforms/Kconfig"
107 config KERNEL_RAM_BASE_ADDRESS
108 hex "Virtual address of memory base"
109 default 0xe0000000 if SOC_TMS320C6455
110 default 0xe0000000 if SOC_TMS320C6457
111 default 0xe0000000 if SOC_TMS320C6472
116 source "kernel/Kconfig.preempt"
118 source "kernel/Kconfig.hz"
122 menu "Executable file formats"
124 source "fs/Kconfig.binfmt"
130 source "drivers/Kconfig"
134 source "security/Kconfig"
136 source "crypto/Kconfig"
140 menu "Kernel hacking"
142 source "lib/Kconfig.debug"
145 bool "Check the user pointer address"
148 Usually the pointer transfer from user space is checked to see if its
149 address is in the kernel space.
151 Say N here to disable that check to improve the performance.