aboutsummaryrefslogtreecommitdiffstats
path: root/init/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'init/Kconfig')
-rw-r--r--init/Kconfig30
1 files changed, 27 insertions, 3 deletions
diff --git a/init/Kconfig b/init/Kconfig
index 3e7b257fc05f..3b5adbf228c7 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -316,9 +316,16 @@ config CPUSETS
316 316
317 Say N if unsure. 317 Say N if unsure.
318 318
319#
320# Architectures with an unreliable sched_clock() should select this:
321#
322config HAVE_UNSTABLE_SCHED_CLOCK
323 bool
324
319config GROUP_SCHED 325config GROUP_SCHED
320 bool "Group CPU scheduler" 326 bool "Group CPU scheduler"
321 default y 327 depends on EXPERIMENTAL
328 default n
322 help 329 help
323 This feature lets CPU scheduler recognize task groups and control CPU 330 This feature lets CPU scheduler recognize task groups and control CPU
324 bandwidth allocation to such task groups. 331 bandwidth allocation to such task groups.
@@ -326,7 +333,7 @@ config GROUP_SCHED
326config FAIR_GROUP_SCHED 333config FAIR_GROUP_SCHED
327 bool "Group scheduling for SCHED_OTHER" 334 bool "Group scheduling for SCHED_OTHER"
328 depends on GROUP_SCHED 335 depends on GROUP_SCHED
329 default y 336 default GROUP_SCHED
330 337
331config RT_GROUP_SCHED 338config RT_GROUP_SCHED
332 bool "Group scheduling for SCHED_RR/FIFO" 339 bool "Group scheduling for SCHED_RR/FIFO"
@@ -627,6 +634,14 @@ config ELF_CORE
627 help 634 help
628 Enable support for generating core dumps. Disabling saves about 4k. 635 Enable support for generating core dumps. Disabling saves about 4k.
629 636
637config PCSPKR_PLATFORM
638 bool "Enable PC-Speaker support" if EMBEDDED
639 depends on ALPHA || X86 || MIPS || PPC_PREP || PPC_CHRP || PPC_PSERIES
640 default y
641 help
642 This option allows to disable the internal PC-Speaker
643 support, saving some memory.
644
630config COMPAT_BRK 645config COMPAT_BRK
631 bool "Disable heap randomization" 646 bool "Disable heap randomization"
632 default y 647 default y
@@ -720,7 +735,7 @@ config VM_EVENT_COUNTERS
720config SLUB_DEBUG 735config SLUB_DEBUG
721 default y 736 default y
722 bool "Enable SLUB debugging support" if EMBEDDED 737 bool "Enable SLUB debugging support" if EMBEDDED
723 depends on SLUB 738 depends on SLUB && SYSFS
724 help 739 help
725 SLUB has extensive debug support features. Disabling these can 740 SLUB has extensive debug support features. Disabling these can
726 result in significant savings in code size. This also disables 741 result in significant savings in code size. This also disables
@@ -825,6 +840,15 @@ menuconfig MODULES
825 840
826 If unsure, say Y. 841 If unsure, say Y.
827 842
843config MODULE_FORCE_LOAD
844 bool "Forced module loading"
845 depends on MODULES
846 default n
847 help
848 This option allows loading of modules even if that would set the
849 'F' (forced) taint, due to lack of version info. Which is
850 usually a really bad idea.
851
828config MODULE_UNLOAD 852config MODULE_UNLOAD
829 bool "Module unloading" 853 bool "Module unloading"
830 depends on MODULES 854 depends on MODULES