xref: /openbmc/linux/init/Kconfig (revision c757249a)
1face4374SRoman Zippelconfig DEFCONFIG_LIST
2face4374SRoman Zippel	string
3face4374SRoman Zippel	option defconfig_list
4face4374SRoman Zippel	default "/lib/modules/$UNAME_RELEASE/.config"
5face4374SRoman Zippel	default "/etc/kernel-config"
6face4374SRoman Zippel	default "/boot/config-$UNAME_RELEASE"
7face4374SRoman Zippel	default "arch/$ARCH/defconfig"
8face4374SRoman Zippel
91da177e4SLinus Torvaldsmenu "Code maturity level options"
101da177e4SLinus Torvalds
111da177e4SLinus Torvaldsconfig EXPERIMENTAL
121da177e4SLinus Torvalds	bool "Prompt for development and/or incomplete code/drivers"
131da177e4SLinus Torvalds	---help---
141da177e4SLinus Torvalds	  Some of the various things that Linux supports (such as network
151da177e4SLinus Torvalds	  drivers, file systems, network protocols, etc.) can be in a state
161da177e4SLinus Torvalds	  of development where the functionality, stability, or the level of
171da177e4SLinus Torvalds	  testing is not yet high enough for general use. This is usually
181da177e4SLinus Torvalds	  known as the "alpha-test" phase among developers. If a feature is
191da177e4SLinus Torvalds	  currently in alpha-test, then the developers usually discourage
201da177e4SLinus Torvalds	  uninformed widespread use of this feature by the general public to
211da177e4SLinus Torvalds	  avoid "Why doesn't this work?" type mail messages. However, active
221da177e4SLinus Torvalds	  testing and use of these systems is welcomed. Just be aware that it
231da177e4SLinus Torvalds	  may not meet the normal level of reliability or it may fail to work
241da177e4SLinus Torvalds	  in some special cases. Detailed bug reports from people familiar
251da177e4SLinus Torvalds	  with the kernel internals are usually welcomed by the developers
261da177e4SLinus Torvalds	  (before submitting bug reports, please read the documents
271da177e4SLinus Torvalds	  <file:README>, <file:MAINTAINERS>, <file:REPORTING-BUGS>,
281da177e4SLinus Torvalds	  <file:Documentation/BUG-HUNTING>, and
291da177e4SLinus Torvalds	  <file:Documentation/oops-tracing.txt> in the kernel source).
301da177e4SLinus Torvalds
311da177e4SLinus Torvalds	  This option will also make obsoleted drivers available. These are
321da177e4SLinus Torvalds	  drivers that have been replaced by something else, and/or are
331da177e4SLinus Torvalds	  scheduled to be removed in a future kernel release.
341da177e4SLinus Torvalds
351da177e4SLinus Torvalds	  Unless you intend to help test and develop a feature or driver that
361da177e4SLinus Torvalds	  falls into this category, or you have a situation that requires
371da177e4SLinus Torvalds	  using these features, you should probably say N here, which will
381da177e4SLinus Torvalds	  cause the configurator to present you with fewer choices. If
391da177e4SLinus Torvalds	  you say Y here, you will be offered the choice of using features or
401da177e4SLinus Torvalds	  drivers that are currently considered to be in the alpha-test phase.
411da177e4SLinus Torvalds
421da177e4SLinus Torvaldsconfig BROKEN
431da177e4SLinus Torvalds	bool
441da177e4SLinus Torvalds
451da177e4SLinus Torvaldsconfig BROKEN_ON_SMP
461da177e4SLinus Torvalds	bool
471da177e4SLinus Torvalds	depends on BROKEN || !SMP
481da177e4SLinus Torvalds	default y
491da177e4SLinus Torvalds
501da177e4SLinus Torvaldsconfig LOCK_KERNEL
511da177e4SLinus Torvalds	bool
521da177e4SLinus Torvalds	depends on SMP || PREEMPT
531da177e4SLinus Torvalds	default y
541da177e4SLinus Torvalds
551da177e4SLinus Torvaldsconfig INIT_ENV_ARG_LIMIT
561da177e4SLinus Torvalds	int
57dd673bcaSAdrian Bunk	default 32 if !UML
58dd673bcaSAdrian Bunk	default 128 if UML
591da177e4SLinus Torvalds	help
6034ad92c2SRandy Dunlap	  Maximum of each of the number of arguments and environment
6134ad92c2SRandy Dunlap	  variables passed to init from the kernel command line.
621da177e4SLinus Torvalds
631da177e4SLinus Torvaldsendmenu
641da177e4SLinus Torvalds
651da177e4SLinus Torvaldsmenu "General setup"
661da177e4SLinus Torvalds
671da177e4SLinus Torvaldsconfig LOCALVERSION
681da177e4SLinus Torvalds	string "Local version - append to kernel release"
691da177e4SLinus Torvalds	help
701da177e4SLinus Torvalds	  Append an extra string to the end of your kernel version.
711da177e4SLinus Torvalds	  This will show up when you type uname, for example.
721da177e4SLinus Torvalds	  The string you set here will be appended after the contents of
731da177e4SLinus Torvalds	  any files with a filename matching localversion* in your
741da177e4SLinus Torvalds	  object and source tree, in that order.  Your total string can
751da177e4SLinus Torvalds	  be a maximum of 64 characters.
761da177e4SLinus Torvalds
77aaebf433SRyan Andersonconfig LOCALVERSION_AUTO
78aaebf433SRyan Anderson	bool "Automatically append version information to the version string"
79aaebf433SRyan Anderson	default y
80aaebf433SRyan Anderson	help
81aaebf433SRyan Anderson	  This will try to automatically determine if the current tree is a
82aaebf433SRyan Anderson	  release tree by looking for git tags that
83aaebf433SRyan Anderson	  belong to the current top of tree revision.
84aaebf433SRyan Anderson
85aaebf433SRyan Anderson	  A string of the format -gxxxxxxxx will be added to the localversion
86aaebf433SRyan Anderson	  if a git based tree is found.  The string generated by this will be
87aaebf433SRyan Anderson	  appended after any matching localversion* files, and after the value
88aaebf433SRyan Anderson	  set in CONFIG_LOCALVERSION
89aaebf433SRyan Anderson
90aaebf433SRyan Anderson	  Note: This requires Perl, and a git repository, but not necessarily
91aaebf433SRyan Anderson	  the git or cogito tools to be installed.
92aaebf433SRyan Anderson
931da177e4SLinus Torvaldsconfig SWAP
941da177e4SLinus Torvalds	bool "Support for paging of anonymous memory (swap)"
951da177e4SLinus Torvalds	depends on MMU
961da177e4SLinus Torvalds	default y
971da177e4SLinus Torvalds	help
981da177e4SLinus Torvalds	  This option allows you to choose whether you want to have support
991da177e4SLinus Torvalds	  for so called swap devices or swap files in your kernel that are
1001da177e4SLinus Torvalds	  used to provide more virtual memory than the actual RAM present
1011da177e4SLinus Torvalds	  in your computer.  If unsure say Y.
1021da177e4SLinus Torvalds
1031da177e4SLinus Torvaldsconfig SYSVIPC
1041da177e4SLinus Torvalds	bool "System V IPC"
1051da177e4SLinus Torvalds	---help---
1061da177e4SLinus Torvalds	  Inter Process Communication is a suite of library functions and
1071da177e4SLinus Torvalds	  system calls which let processes (running programs) synchronize and
1081da177e4SLinus Torvalds	  exchange information. It is generally considered to be a good thing,
1091da177e4SLinus Torvalds	  and some programs won't run unless you say Y here. In particular, if
1101da177e4SLinus Torvalds	  you want to run the DOS emulator dosemu under Linux (read the
1111da177e4SLinus Torvalds	  DOSEMU-HOWTO, available from <http://www.tldp.org/docs.html#howto>),
1121da177e4SLinus Torvalds	  you'll need to say Y here.
1131da177e4SLinus Torvalds
1141da177e4SLinus Torvalds	  You can find documentation about IPC with "info ipc" and also in
1151da177e4SLinus Torvalds	  section 6.4 of the Linux Programmer's Guide, available from
1161da177e4SLinus Torvalds	  <http://www.tldp.org/guides.html>.
1171da177e4SLinus Torvalds
1181da177e4SLinus Torvaldsconfig POSIX_MQUEUE
1191da177e4SLinus Torvalds	bool "POSIX Message Queues"
1201da177e4SLinus Torvalds	depends on NET && EXPERIMENTAL
1211da177e4SLinus Torvalds	---help---
1221da177e4SLinus Torvalds	  POSIX variant of message queues is a part of IPC. In POSIX message
1231da177e4SLinus Torvalds	  queues every message has a priority which decides about succession
1241da177e4SLinus Torvalds	  of receiving it by a process. If you want to compile and run
1251da177e4SLinus Torvalds	  programs written e.g. for Solaris with use of its POSIX message
1261da177e4SLinus Torvalds	  queues (functions mq_*) say Y here. To use this feature you will
1271da177e4SLinus Torvalds	  also need mqueue library, available from
1281da177e4SLinus Torvalds	  <http://www.mat.uni.torun.pl/~wrona/posix_ipc/>
1291da177e4SLinus Torvalds
1301da177e4SLinus Torvalds	  POSIX message queues are visible as a filesystem called 'mqueue'
1311da177e4SLinus Torvalds	  and can be mounted somewhere if you want to do filesystem
1321da177e4SLinus Torvalds	  operations on message queues.
1331da177e4SLinus Torvalds
1341da177e4SLinus Torvalds	  If unsure, say Y.
1351da177e4SLinus Torvalds
1361da177e4SLinus Torvaldsconfig BSD_PROCESS_ACCT
1371da177e4SLinus Torvalds	bool "BSD Process Accounting"
1381da177e4SLinus Torvalds	help
1391da177e4SLinus Torvalds	  If you say Y here, a user level program will be able to instruct the
1401da177e4SLinus Torvalds	  kernel (via a special system call) to write process accounting
1411da177e4SLinus Torvalds	  information to a file: whenever a process exits, information about
1421da177e4SLinus Torvalds	  that process will be appended to the file by the kernel.  The
1431da177e4SLinus Torvalds	  information includes things such as creation time, owning user,
1441da177e4SLinus Torvalds	  command name, memory usage, controlling terminal etc. (the complete
1451da177e4SLinus Torvalds	  list is in the struct acct in <file:include/linux/acct.h>).  It is
1461da177e4SLinus Torvalds	  up to the user level program to do useful things with this
1471da177e4SLinus Torvalds	  information.  This is generally a good idea, so say Y.
1481da177e4SLinus Torvalds
1491da177e4SLinus Torvaldsconfig BSD_PROCESS_ACCT_V3
1501da177e4SLinus Torvalds	bool "BSD Process Accounting version 3 file format"
1511da177e4SLinus Torvalds	depends on BSD_PROCESS_ACCT
1521da177e4SLinus Torvalds	default n
1531da177e4SLinus Torvalds	help
1541da177e4SLinus Torvalds	  If you say Y here, the process accounting information is written
1551da177e4SLinus Torvalds	  in a new file format that also logs the process IDs of each
1561da177e4SLinus Torvalds	  process and it's parent. Note that this file format is incompatible
1571da177e4SLinus Torvalds	  with previous v0/v1/v2 file formats, so you will need updated tools
1581da177e4SLinus Torvalds	  for processing it. A preliminary version of these tools is available
1591da177e4SLinus Torvalds	  at <http://www.physik3.uni-rostock.de/tim/kernel/utils/acct/>.
1601da177e4SLinus Torvalds
161*c757249aSShailabh Nagarconfig TASKSTATS
162*c757249aSShailabh Nagar	bool "Export task/process statistics through netlink (EXPERIMENTAL)"
163*c757249aSShailabh Nagar	depends on NET
164*c757249aSShailabh Nagar	default n
165*c757249aSShailabh Nagar	help
166*c757249aSShailabh Nagar	  Export selected statistics for tasks/processes through the
167*c757249aSShailabh Nagar	  generic netlink interface. Unlike BSD process accounting, the
168*c757249aSShailabh Nagar	  statistics are available during the lifetime of tasks/processes as
169*c757249aSShailabh Nagar	  responses to commands. Like BSD accounting, they are sent to user
170*c757249aSShailabh Nagar	  space on task exit.
171*c757249aSShailabh Nagar
172*c757249aSShailabh Nagar	  Say N if unsure.
173*c757249aSShailabh Nagar
174ca74e92bSShailabh Nagarconfig TASK_DELAY_ACCT
175ca74e92bSShailabh Nagar	bool "Enable per-task delay accounting (EXPERIMENTAL)"
176ca74e92bSShailabh Nagar	help
177ca74e92bSShailabh Nagar	  Collect information on time spent by a task waiting for system
178ca74e92bSShailabh Nagar	  resources like cpu, synchronous block I/O completion and swapping
179ca74e92bSShailabh Nagar	  in pages. Such statistics can help in setting a task's priorities
180ca74e92bSShailabh Nagar	  relative to other tasks for cpu, io, rss limits etc.
181ca74e92bSShailabh Nagar
182ca74e92bSShailabh Nagar	  Say N if unsure.
183ca74e92bSShailabh Nagar
1841da177e4SLinus Torvaldsconfig SYSCTL
185eab98702SH. Peter Anvin	bool "Sysctl support" if EMBEDDED
186eab98702SH. Peter Anvin	default y
1871da177e4SLinus Torvalds	---help---
1881da177e4SLinus Torvalds	  The sysctl interface provides a means of dynamically changing
1891da177e4SLinus Torvalds	  certain kernel parameters and variables on the fly without requiring
1901da177e4SLinus Torvalds	  a recompile of the kernel or reboot of the system.  The primary
1911da177e4SLinus Torvalds	  interface consists of a system call, but if you say Y to "/proc
1921da177e4SLinus Torvalds	  file system support", a tree of modifiable sysctl entries will be
1931da177e4SLinus Torvalds	  generated beneath the /proc/sys directory. They are explained in the
1941da177e4SLinus Torvalds	  files in <file:Documentation/sysctl/>.  Note that enabling this
1951da177e4SLinus Torvalds	  option will enlarge the kernel by at least 8 KB.
1961da177e4SLinus Torvalds
1971da177e4SLinus Torvalds	  As it is generally a good thing, you should say Y here unless
1981da177e4SLinus Torvalds	  building a kernel for install/rescue disks or your system is very
1991da177e4SLinus Torvalds	  limited in memory.
2001da177e4SLinus Torvalds
2011da177e4SLinus Torvaldsconfig AUDIT
2021da177e4SLinus Torvalds	bool "Auditing support"
203804a6a49SChris Wright	depends on NET
2041da177e4SLinus Torvalds	help
2051da177e4SLinus Torvalds	  Enable auditing infrastructure that can be used with another
2061da177e4SLinus Torvalds	  kernel subsystem, such as SELinux (which requires this for
2071da177e4SLinus Torvalds	  logging of avc messages output).  Does not do system-call
2081da177e4SLinus Torvalds	  auditing without CONFIG_AUDITSYSCALL.
2091da177e4SLinus Torvalds
2101da177e4SLinus Torvaldsconfig AUDITSYSCALL
2111da177e4SLinus Torvalds	bool "Enable system-call auditing support"
212347a8dc3SMartin Schwidefsky	depends on AUDIT && (X86 || PPC || PPC64 || S390 || IA64 || UML || SPARC64)
2131da177e4SLinus Torvalds	default y if SECURITY_SELINUX
2141da177e4SLinus Torvalds	help
2151da177e4SLinus Torvalds	  Enable low-overhead system-call auditing infrastructure that
2161da177e4SLinus Torvalds	  can be used independently or with another kernel subsystem,
217f368c07dSAmy Griffis	  such as SELinux.  To use audit's filesystem watch feature, please
218f368c07dSAmy Griffis	  ensure that INOTIFY is configured.
2191da177e4SLinus Torvalds
2201da177e4SLinus Torvaldsconfig IKCONFIG
2211da177e4SLinus Torvalds	bool "Kernel .config support"
2221da177e4SLinus Torvalds	---help---
2231da177e4SLinus Torvalds	  This option enables the complete Linux kernel ".config" file
2241da177e4SLinus Torvalds	  contents to be saved in the kernel. It provides documentation
2251da177e4SLinus Torvalds	  of which kernel options are used in a running kernel or in an
2261da177e4SLinus Torvalds	  on-disk kernel.  This information can be extracted from the kernel
2271da177e4SLinus Torvalds	  image file with the script scripts/extract-ikconfig and used as
2281da177e4SLinus Torvalds	  input to rebuild the current kernel or to build another kernel.
2291da177e4SLinus Torvalds	  It can also be extracted from a running kernel by reading
2301da177e4SLinus Torvalds	  /proc/config.gz if enabled (below).
2311da177e4SLinus Torvalds
2321da177e4SLinus Torvaldsconfig IKCONFIG_PROC
2331da177e4SLinus Torvalds	bool "Enable access to .config through /proc/config.gz"
2341da177e4SLinus Torvalds	depends on IKCONFIG && PROC_FS
2351da177e4SLinus Torvalds	---help---
2361da177e4SLinus Torvalds	  This option enables access to the kernel configuration file
2371da177e4SLinus Torvalds	  through /proc/config.gz.
2381da177e4SLinus Torvalds
2391da177e4SLinus Torvaldsconfig CPUSETS
2401da177e4SLinus Torvalds	bool "Cpuset support"
2411da177e4SLinus Torvalds	depends on SMP
2421da177e4SLinus Torvalds	help
243d9fd8a6dSRandy Dunlap	  This option will let you create and manage CPUSETs which
2441da177e4SLinus Torvalds	  allow dynamically partitioning a system into sets of CPUs and
2451da177e4SLinus Torvalds	  Memory Nodes and assigning tasks to run only within those sets.
2461da177e4SLinus Torvalds	  This is primarily useful on large SMP or NUMA systems.
2471da177e4SLinus Torvalds
2481da177e4SLinus Torvalds	  Say N if unsure.
2491da177e4SLinus Torvalds
250b86ff981SJens Axboeconfig RELAY
251b86ff981SJens Axboe	bool "Kernel->user space relay support (formerly relayfs)"
252b86ff981SJens Axboe	help
253b86ff981SJens Axboe	  This option enables support for relay interface support in
254b86ff981SJens Axboe	  certain file systems (such as debugfs).
255b86ff981SJens Axboe	  It is designed to provide an efficient mechanism for tools and
256b86ff981SJens Axboe	  facilities to relay large amounts of data from kernel space to
257b86ff981SJens Axboe	  user space.
258b86ff981SJens Axboe
259b86ff981SJens Axboe	  If unsure, say N.
260b86ff981SJens Axboe
261dbec4866SSam Ravnborgsource "usr/Kconfig"
262dbec4866SSam Ravnborg
263e585e470SMatt Mackallconfig UID16
264e585e470SMatt Mackall	bool "Enable 16-bit UID system calls" if EMBEDDED
2652308accaSAdrian Bunk	depends on ARM || CRIS || FRV || H8300 || X86_32 || M68K || (S390 && !64BIT) || SUPERH || SPARC32 || (SPARC64 && SPARC32_COMPAT) || UML || (X86_64 && IA32_EMULATION)
266e585e470SMatt Mackall	default y
267e585e470SMatt Mackall	help
268e585e470SMatt Mackall	  This enables the legacy 16-bit UID syscall wrappers.
269e585e470SMatt Mackall
270c45b4f1fSLinus Torvaldsconfig CC_OPTIMIZE_FOR_SIZE
271c45b4f1fSLinus Torvalds	bool "Optimize for size (Look out for broken compilers!)"
272c45b4f1fSLinus Torvalds	default y
273c45b4f1fSLinus Torvalds	depends on ARM || H8300 || EXPERIMENTAL
274c45b4f1fSLinus Torvalds	help
275c45b4f1fSLinus Torvalds	  Enabling this option will pass "-Os" instead of "-O2" to gcc
276c45b4f1fSLinus Torvalds	  resulting in a smaller kernel.
277c45b4f1fSLinus Torvalds
278c45b4f1fSLinus Torvalds	  WARNING: some versions of gcc may generate incorrect code with this
279c45b4f1fSLinus Torvalds	  option.  If problems are observed, a gcc upgrade may be needed.
280c45b4f1fSLinus Torvalds
281c45b4f1fSLinus Torvalds	  If unsure, say N.
282c45b4f1fSLinus Torvalds
2831da177e4SLinus Torvaldsmenuconfig EMBEDDED
2841da177e4SLinus Torvalds	bool "Configure standard kernel features (for small systems)"
2851da177e4SLinus Torvalds	help
2861da177e4SLinus Torvalds	  This option allows certain base kernel options and settings
2871da177e4SLinus Torvalds          to be disabled or tweaked. This is for specialized
2881da177e4SLinus Torvalds          environments which can tolerate a "non-standard" kernel.
2891da177e4SLinus Torvalds          Only use this if you really know what you are doing.
2901da177e4SLinus Torvalds
2911da177e4SLinus Torvaldsconfig KALLSYMS
2921da177e4SLinus Torvalds	 bool "Load all symbols for debugging/kksymoops" if EMBEDDED
2931da177e4SLinus Torvalds	 default y
2941da177e4SLinus Torvalds	 help
2951da177e4SLinus Torvalds	   Say Y here to let the kernel print out symbolic crash information and
2961da177e4SLinus Torvalds	   symbolic stack backtraces. This increases the size of the kernel
2971da177e4SLinus Torvalds	   somewhat, as all symbols have to be loaded into the kernel image.
2981da177e4SLinus Torvalds
2991da177e4SLinus Torvaldsconfig KALLSYMS_ALL
3001da177e4SLinus Torvalds	bool "Include all symbols in kallsyms"
3011da177e4SLinus Torvalds	depends on DEBUG_KERNEL && KALLSYMS
3021da177e4SLinus Torvalds	help
3031da177e4SLinus Torvalds	   Normally kallsyms only contains the symbols of functions, for nicer
3041da177e4SLinus Torvalds	   OOPS messages.  Some debuggers can use kallsyms for other
305f9f97bc0SJesper Juhl	   symbols too: say Y here to include all symbols, if you need them
306f9f97bc0SJesper Juhl	   and you don't care about adding 300k to the size of your kernel.
3071da177e4SLinus Torvalds
3081da177e4SLinus Torvalds	   Say N.
3091da177e4SLinus Torvalds
3101da177e4SLinus Torvaldsconfig KALLSYMS_EXTRA_PASS
3111da177e4SLinus Torvalds	bool "Do an extra kallsyms pass"
3121da177e4SLinus Torvalds	depends on KALLSYMS
3131da177e4SLinus Torvalds	help
3141da177e4SLinus Torvalds	   If kallsyms is not working correctly, the build will fail with
3151da177e4SLinus Torvalds	   inconsistent kallsyms data.  If that occurs, log a bug report and
3161da177e4SLinus Torvalds	   turn on KALLSYMS_EXTRA_PASS which should result in a stable build.
3171da177e4SLinus Torvalds	   Always say N here unless you find a bug in kallsyms, which must be
3181da177e4SLinus Torvalds	   reported.  KALLSYMS_EXTRA_PASS is only a temporary workaround while
3191da177e4SLinus Torvalds	   you wait for kallsyms to be fixed.
3201da177e4SLinus Torvalds
321d59745ceSMatt Mackall
322712f47ceSGreg Kroah-Hartmanconfig HOTPLUG
323712f47ceSGreg Kroah-Hartman	bool "Support for hot-pluggable devices" if EMBEDDED
324712f47ceSGreg Kroah-Hartman	default y
325712f47ceSGreg Kroah-Hartman	help
326712f47ceSGreg Kroah-Hartman	  This option is provided for the case where no hotplug or uevent
327712f47ceSGreg Kroah-Hartman	  capabilities is wanted by the kernel.  You should only consider
328712f47ceSGreg Kroah-Hartman	  disabling this option for embedded systems that do not use modules, a
329712f47ceSGreg Kroah-Hartman	  dynamic /dev tree, or dynamic device discovery.  Just say Y.
330712f47ceSGreg Kroah-Hartman
331d59745ceSMatt Mackallconfig PRINTK
332d59745ceSMatt Mackall	default y
333d59745ceSMatt Mackall	bool "Enable support for printk" if EMBEDDED
334d59745ceSMatt Mackall	help
335d59745ceSMatt Mackall	  This option enables normal printk support. Removing it
336d59745ceSMatt Mackall	  eliminates most of the message strings from the kernel image
337d59745ceSMatt Mackall	  and makes the kernel more or less silent. As this makes it
338d59745ceSMatt Mackall	  very difficult to diagnose system problems, saying N here is
339d59745ceSMatt Mackall	  strongly discouraged.
340d59745ceSMatt Mackall
341c8538a7aSMatt Mackallconfig BUG
342c8538a7aSMatt Mackall	bool "BUG() support" if EMBEDDED
343c8538a7aSMatt Mackall	default y
344c8538a7aSMatt Mackall	help
345c8538a7aSMatt Mackall          Disabling this option eliminates support for BUG and WARN, reducing
346c8538a7aSMatt Mackall          the size of your kernel image and potentially quietly ignoring
347c8538a7aSMatt Mackall          numerous fatal conditions. You should only consider disabling this
348c8538a7aSMatt Mackall          option for embedded systems with no facilities for reporting errors.
349c8538a7aSMatt Mackall          Just say Y.
350c8538a7aSMatt Mackall
351708e9a79SMatt Mackallconfig ELF_CORE
352708e9a79SMatt Mackall	default y
353708e9a79SMatt Mackall	bool "Enable ELF core dumps" if EMBEDDED
354708e9a79SMatt Mackall	help
355708e9a79SMatt Mackall	  Enable support for generating core dumps. Disabling saves about 4k.
356708e9a79SMatt Mackall
3571da177e4SLinus Torvaldsconfig BASE_FULL
3581da177e4SLinus Torvalds	default y
3591da177e4SLinus Torvalds	bool "Enable full-sized data structures for core" if EMBEDDED
3601da177e4SLinus Torvalds	help
3611da177e4SLinus Torvalds	  Disabling this option reduces the size of miscellaneous core
3621da177e4SLinus Torvalds	  kernel data structures. This saves memory on small machines,
3631da177e4SLinus Torvalds	  but may reduce performance.
3641da177e4SLinus Torvalds
36523f78d4aSIngo Molnarconfig RT_MUTEXES
36623f78d4aSIngo Molnar	boolean
36723f78d4aSIngo Molnar	select PLIST
36823f78d4aSIngo Molnar
3691da177e4SLinus Torvaldsconfig FUTEX
3701da177e4SLinus Torvalds	bool "Enable futex support" if EMBEDDED
3711da177e4SLinus Torvalds	default y
37223f78d4aSIngo Molnar	select RT_MUTEXES
3731da177e4SLinus Torvalds	help
3741da177e4SLinus Torvalds	  Disabling this option will cause the kernel to be built without
3751da177e4SLinus Torvalds	  support for "fast userspace mutexes".  The resulting kernel may not
3761da177e4SLinus Torvalds	  run glibc-based applications correctly.
3771da177e4SLinus Torvalds
3781da177e4SLinus Torvaldsconfig EPOLL
3791da177e4SLinus Torvalds	bool "Enable eventpoll support" if EMBEDDED
3801da177e4SLinus Torvalds	default y
3811da177e4SLinus Torvalds	help
3821da177e4SLinus Torvalds	  Disabling this option will cause the kernel to be built without
3831da177e4SLinus Torvalds	  support for epoll family of system calls.
3841da177e4SLinus Torvalds
3851da177e4SLinus Torvaldsconfig SHMEM
3861da177e4SLinus Torvalds	bool "Use full shmem filesystem" if EMBEDDED
3871da177e4SLinus Torvalds	default y
3881da177e4SLinus Torvalds	depends on MMU
3891da177e4SLinus Torvalds	help
3901da177e4SLinus Torvalds	  The shmem is an internal filesystem used to manage shared memory.
3911da177e4SLinus Torvalds	  It is backed by swap and manages resource limits. It is also exported
3921da177e4SLinus Torvalds	  to userspace as tmpfs if TMPFS is enabled. Disabling this
3931da177e4SLinus Torvalds	  option replaces shmem and tmpfs with the much simpler ramfs code,
3941da177e4SLinus Torvalds	  which may be appropriate on small systems without swap.
3951da177e4SLinus Torvalds
39610cef602SMatt Mackallconfig SLAB
39710cef602SMatt Mackall	default y
39810cef602SMatt Mackall	bool "Use full SLAB allocator" if EMBEDDED
39910cef602SMatt Mackall	help
40010cef602SMatt Mackall	  Disabling this replaces the advanced SLAB allocator and
40110cef602SMatt Mackall	  kmalloc support with the drastically simpler SLOB allocator.
40210cef602SMatt Mackall	  SLOB is more space efficient but does not scale well and is
40310cef602SMatt Mackall	  more susceptible to fragmentation.
40410cef602SMatt Mackall
405f8891e5eSChristoph Lameterconfig VM_EVENT_COUNTERS
406f8891e5eSChristoph Lameter	default y
407f8891e5eSChristoph Lameter	bool "Enable VM event counters for /proc/vmstat" if EMBEDDED
408f8891e5eSChristoph Lameter	help
409f8891e5eSChristoph Lameter	  VM event counters are only needed to for event counts to be
410f8891e5eSChristoph Lameter	  shown. They have no function for the kernel itself. This
411f8891e5eSChristoph Lameter	  option allows the disabling of the VM event counters.
412f8891e5eSChristoph Lameter	  /proc/vmstat will only show page counts.
413f8891e5eSChristoph Lameter
4141da177e4SLinus Torvaldsendmenu		# General setup
4151da177e4SLinus Torvalds
4161da177e4SLinus Torvaldsconfig TINY_SHMEM
4171da177e4SLinus Torvalds	default !SHMEM
4181da177e4SLinus Torvalds	bool
4191da177e4SLinus Torvalds
4201da177e4SLinus Torvaldsconfig BASE_SMALL
4211da177e4SLinus Torvalds	int
4221da177e4SLinus Torvalds	default 0 if BASE_FULL
4231da177e4SLinus Torvalds	default 1 if !BASE_FULL
4241da177e4SLinus Torvalds
42510cef602SMatt Mackallconfig SLOB
42610cef602SMatt Mackall	default !SLAB
42710cef602SMatt Mackall	bool
42810cef602SMatt Mackall
4291da177e4SLinus Torvaldsmenu "Loadable module support"
4301da177e4SLinus Torvalds
4311da177e4SLinus Torvaldsconfig MODULES
4321da177e4SLinus Torvalds	bool "Enable loadable module support"
4331da177e4SLinus Torvalds	help
4341da177e4SLinus Torvalds	  Kernel modules are small pieces of compiled code which can
4351da177e4SLinus Torvalds	  be inserted in the running kernel, rather than being
4361da177e4SLinus Torvalds	  permanently built into the kernel.  You use the "modprobe"
4371da177e4SLinus Torvalds	  tool to add (and sometimes remove) them.  If you say Y here,
4381da177e4SLinus Torvalds	  many parts of the kernel can be built as modules (by
4391da177e4SLinus Torvalds	  answering M instead of Y where indicated): this is most
4401da177e4SLinus Torvalds	  useful for infrequently used options which are not required
4411da177e4SLinus Torvalds	  for booting.  For more information, see the man pages for
4421da177e4SLinus Torvalds	  modprobe, lsmod, modinfo, insmod and rmmod.
4431da177e4SLinus Torvalds
4441da177e4SLinus Torvalds	  If you say Y here, you will need to run "make
4451da177e4SLinus Torvalds	  modules_install" to put the modules under /lib/modules/
4461da177e4SLinus Torvalds	  where modprobe can find them (you may need to be root to do
4471da177e4SLinus Torvalds	  this).
4481da177e4SLinus Torvalds
4491da177e4SLinus Torvalds	  If unsure, say Y.
4501da177e4SLinus Torvalds
4511da177e4SLinus Torvaldsconfig MODULE_UNLOAD
4521da177e4SLinus Torvalds	bool "Module unloading"
4531da177e4SLinus Torvalds	depends on MODULES
4541da177e4SLinus Torvalds	help
4551da177e4SLinus Torvalds	  Without this option you will not be able to unload any
4561da177e4SLinus Torvalds	  modules (note that some modules may not be unloadable
4571da177e4SLinus Torvalds	  anyway), which makes your kernel slightly smaller and
4581da177e4SLinus Torvalds	  simpler.  If unsure, say Y.
4591da177e4SLinus Torvalds
4601da177e4SLinus Torvaldsconfig MODULE_FORCE_UNLOAD
4611da177e4SLinus Torvalds	bool "Forced module unloading"
4621da177e4SLinus Torvalds	depends on MODULE_UNLOAD && EXPERIMENTAL
4631da177e4SLinus Torvalds	help
4641da177e4SLinus Torvalds	  This option allows you to force a module to unload, even if the
4651da177e4SLinus Torvalds	  kernel believes it is unsafe: the kernel will remove the module
4661da177e4SLinus Torvalds	  without waiting for anyone to stop using it (using the -f option to
4671da177e4SLinus Torvalds	  rmmod).  This is mainly for kernel developers and desperate users.
4681da177e4SLinus Torvalds	  If unsure, say N.
4691da177e4SLinus Torvalds
4701da177e4SLinus Torvaldsconfig MODVERSIONS
4710d541643SSam Ravnborg	bool "Module versioning support"
4720d541643SSam Ravnborg	depends on MODULES
4731da177e4SLinus Torvalds	help
4741da177e4SLinus Torvalds	  Usually, you have to use modules compiled with your kernel.
4751da177e4SLinus Torvalds	  Saying Y here makes it sometimes possible to use modules
4761da177e4SLinus Torvalds	  compiled for different kernels, by adding enough information
4771da177e4SLinus Torvalds	  to the modules to (hopefully) spot any changes which would
4781da177e4SLinus Torvalds	  make them incompatible with the kernel you are running.  If
4791da177e4SLinus Torvalds	  unsure, say N.
4801da177e4SLinus Torvalds
4811da177e4SLinus Torvaldsconfig MODULE_SRCVERSION_ALL
4821da177e4SLinus Torvalds	bool "Source checksum for all modules"
4831da177e4SLinus Torvalds	depends on MODULES
4841da177e4SLinus Torvalds	help
4851da177e4SLinus Torvalds	  Modules which contain a MODULE_VERSION get an extra "srcversion"
4861da177e4SLinus Torvalds	  field inserted into their modinfo section, which contains a
4871da177e4SLinus Torvalds    	  sum of the source files which made it.  This helps maintainers
4881da177e4SLinus Torvalds	  see exactly which source was used to build a module (since
4891da177e4SLinus Torvalds	  others sometimes change the module source without updating
4901da177e4SLinus Torvalds	  the version).  With this option, such a "srcversion" field
4911da177e4SLinus Torvalds	  will be created for all modules.  If unsure, say N.
4921da177e4SLinus Torvalds
4931da177e4SLinus Torvaldsconfig KMOD
4941da177e4SLinus Torvalds	bool "Automatic kernel module loading"
4951da177e4SLinus Torvalds	depends on MODULES
4961da177e4SLinus Torvalds	help
4971da177e4SLinus Torvalds	  Normally when you have selected some parts of the kernel to
4981da177e4SLinus Torvalds	  be created as kernel modules, you must load them (using the
4991da177e4SLinus Torvalds	  "modprobe" command) before you can use them. If you say Y
5001da177e4SLinus Torvalds	  here, some parts of the kernel will be able to load modules
5011da177e4SLinus Torvalds	  automatically: when a part of the kernel needs a module, it
5021da177e4SLinus Torvalds	  runs modprobe with the appropriate arguments, thereby
5031da177e4SLinus Torvalds	  loading the module if it is available.  If unsure, say Y.
5041da177e4SLinus Torvalds
5051da177e4SLinus Torvaldsconfig STOP_MACHINE
5061da177e4SLinus Torvalds	bool
5071da177e4SLinus Torvalds	default y
5081da177e4SLinus Torvalds	depends on (SMP && MODULE_UNLOAD) || HOTPLUG_CPU
5091da177e4SLinus Torvalds	help
5101da177e4SLinus Torvalds	  Need stop_machine() primitive.
5111da177e4SLinus Torvaldsendmenu
5123a65dfe8SJens Axboe
5133a65dfe8SJens Axboemenu "Block layer"
5143a65dfe8SJens Axboesource "block/Kconfig"
5153a65dfe8SJens Axboeendmenu
516