Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'for-gregkh-3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux into driver-core-next

Kees writes:
The current Acked set of patches for dropping CONFIG_EXPERIMENTAL.

+206 -333
+1 -9
Documentation/CodingStyle
··· 546 546 logging of avc messages output). Does not do system-call 547 547 auditing without CONFIG_AUDITSYSCALL. 548 548 549 - Features that might still be considered unstable should be defined as 550 - dependent on "EXPERIMENTAL": 551 - 552 - config SLUB 553 - depends on EXPERIMENTAL && !ARCH_USES_SLAB_PAGE_STRUCT 554 - bool "SLUB (Unqueued Allocator)" 555 - ... 556 - 557 - while seriously dangerous features (such as write support for certain 549 + Seriously dangerous features (such as write support for certain 558 550 filesystems) should advertise this prominently in their prompt string: 559 551 560 552 config ADFS_FS_RW
-7
Documentation/DocBook/kernel-hacking.tmpl
··· 1185 1185 </para> 1186 1186 1187 1187 <para> 1188 - You may well want to make your CONFIG option only visible if 1189 - <symbol>CONFIG_EXPERIMENTAL</symbol> is enabled: this serves as a 1190 - warning to users. There many other fancy things you can do: see 1191 - the various <filename>Kconfig</filename> files for ideas. 1192 - </para> 1193 - 1194 - <para> 1195 1188 In your description of the option, make sure you address both the 1196 1189 expert user and the user who knows nothing about your feature. Mention 1197 1190 incompatibilities and issues here. <emphasis> Definitely
+2 -4
Documentation/DocBook/kgdb.tmpl
··· 94 94 <sect1 id="CompileKGDB"> 95 95 <title>Kernel config options for kgdb</title> 96 96 <para> 97 - To enable <symbol>CONFIG_KGDB</symbol> you should first turn on 98 - "Prompt for development and/or incomplete code/drivers" 99 - (CONFIG_EXPERIMENTAL) in "General setup", then under the 100 - "Kernel debugging" select "KGDB: kernel debugger". 97 + To enable <symbol>CONFIG_KGDB</symbol> you should look under 98 + "Kernel debugging" and select "KGDB: kernel debugger". 101 99 </para> 102 100 <para> 103 101 While it is not a hard requirement that you have symbols in your
+1 -1
Documentation/intel_txt.txt
··· 192 192 193 193 The kernel option for enabling Intel TXT support is found under the 194 194 Security top-level menu and is called "Enable Intel(R) Trusted 195 - Execution Technology (TXT)". It is marked as EXPERIMENTAL and 195 + Execution Technology (TXT)". It is considered EXPERIMENTAL and 196 196 depends on the generic x86 support (to allow maximum flexibility in 197 197 kernel build options), since the tboot code will detect whether the 198 198 platform actually supports Intel TXT and thus whether any of the
-7
Documentation/zh_CN/CodingStyle
··· 462 462 logging of avc messages output). Does not do system-call 463 463 auditing without CONFIG_AUDITSYSCALL. 464 464 465 - 仍然被认为不够稳定的功能应该被定义为依赖于“EXPERIMENTAL”: 466 - 467 - config SLUB 468 - depends on EXPERIMENTAL && !ARCH_USES_SLAB_PAGE_STRUCT 469 - bool "SLUB (Unqueued Allocator)" 470 - ... 471 - 472 465 而那些危险的功能(比如某些文件系统的写支持)应该在它们的提示字符串里显著的声明这 473 466 一点: 474 467
+1 -2
arch/alpha/Kconfig
··· 556 556 with working support have a maximum of 4 CPUs. 557 557 558 558 config ARCH_DISCONTIGMEM_ENABLE 559 - bool "Discontiguous Memory Support (EXPERIMENTAL)" 560 - depends on EXPERIMENTAL 559 + bool "Discontiguous Memory Support" 561 560 help 562 561 Say Y to support efficient handling of discontiguous physical memory, 563 562 for architectures which are either NUMA (Non-Uniform Memory Access)
+2 -2
arch/cris/arch-v32/drivers/Kconfig
··· 680 680 681 681 config SPI_ETRAX_SSER 682 682 tristate 683 - depends on SPI_MASTER && ETRAX_ARCH_V32 && EXPERIMENTAL 683 + depends on SPI_MASTER && ETRAX_ARCH_V32 684 684 select SPI_BITBANG 685 685 help 686 686 This enables using an synchronous serial (sser) port as a ··· 689 689 690 690 config SPI_ETRAX_GPIO 691 691 tristate 692 - depends on SPI_MASTER && ETRAX_ARCH_V32 && EXPERIMENTAL 692 + depends on SPI_MASTER && ETRAX_ARCH_V32 693 693 select SPI_BITBANG 694 694 help 695 695 This enables using GPIO pins port as a SPI master controller
+4 -4
arch/ia64/Kconfig
··· 375 375 performance hit. 376 376 377 377 config HOTPLUG_CPU 378 - bool "Support for hot-pluggable CPUs (EXPERIMENTAL)" 379 - depends on SMP && EXPERIMENTAL 378 + bool "Support for hot-pluggable CPUs" 379 + depends on SMP 380 380 select HOTPLUG 381 381 default n 382 382 ---help--- ··· 555 555 source "drivers/sn/Kconfig" 556 556 557 557 config KEXEC 558 - bool "kexec system call (EXPERIMENTAL)" 559 - depends on EXPERIMENTAL && !IA64_HP_SIM && (!SMP || HOTPLUG_CPU) 558 + bool "kexec system call" 559 + depends on !IA64_HP_SIM && (!SMP || HOTPLUG_CPU) 560 560 help 561 561 kexec is a system call that implements the ability to shutdown your 562 562 current kernel, and to start another kernel. It is like a reboot
+1 -1
arch/ia64/kvm/Kconfig
··· 20 20 config KVM 21 21 tristate "Kernel-based Virtual Machine (KVM) support" 22 22 depends on BROKEN 23 - depends on HAVE_KVM && MODULES && EXPERIMENTAL 23 + depends on HAVE_KVM && MODULES 24 24 # for device assignment: 25 25 depends on PCI 26 26 depends on BROKEN
+1 -1
arch/ia64/xen/Kconfig
··· 5 5 config XEN 6 6 bool "Xen hypervisor support" 7 7 default y 8 - depends on PARAVIRT && MCKINLEY && IA64_PAGE_SIZE_16KB && EXPERIMENTAL 8 + depends on PARAVIRT && MCKINLEY && IA64_PAGE_SIZE_16KB 9 9 select XEN_XENCOMM 10 10 select NO_IDLE_HZ 11 11 # followings are required to save/restore.
+1 -1
arch/powerpc/platforms/ps3/Kconfig
··· 48 48 system will have optimal runtime performance. 49 49 50 50 config PS3_DYNAMIC_DMA 51 - depends on PPC_PS3 && EXPERIMENTAL 51 + depends on PPC_PS3 52 52 bool "PS3 Platform dynamic DMA page table management" 53 53 default n 54 54 help
+2 -2
arch/s390/Kconfig
··· 718 718 719 719 config S390_GUEST 720 720 def_bool y 721 - prompt "s390 support for virtio devices (EXPERIMENTAL)" 722 - depends on 64BIT && EXPERIMENTAL 721 + prompt "s390 support for virtio devices" 722 + depends on 64BIT 723 723 select VIRTUALIZATION 724 724 select VIRTIO 725 725 select VIRTIO_CONSOLE
+1 -1
arch/s390/kvm/Kconfig
··· 18 18 config KVM 19 19 def_tristate y 20 20 prompt "Kernel-based Virtual Machine (KVM) support" 21 - depends on HAVE_KVM && EXPERIMENTAL 21 + depends on HAVE_KVM 22 22 select PREEMPT_NOTIFIERS 23 23 select ANON_INODES 24 24 select HAVE_KVM_CPU_RELAX_INTERCEPT
+1 -1
arch/um/Kconfig.net
··· 157 157 158 158 config UML_NET_PCAP 159 159 bool "pcap transport" 160 - depends on UML_NET && EXPERIMENTAL 160 + depends on UML_NET 161 161 help 162 162 The pcap transport makes a pcap packet stream on the host look 163 163 like an ethernet device inside UML. This is useful for making
+4 -4
arch/um/Kconfig.um
··· 45 45 say Y or M here; otherwise say N. 46 46 47 47 config HPPFS 48 - tristate "HoneyPot ProcFS (EXPERIMENTAL)" 49 - depends on EXPERIMENTAL && PROC_FS 48 + tristate "HoneyPot ProcFS" 49 + depends on PROC_FS 50 50 help 51 51 hppfs (HoneyPot ProcFS) is a filesystem which allows UML /proc 52 52 entries to be overridden, removed, or fabricated from the host. ··· 96 96 unless you really know what this hack does. 97 97 98 98 config SMP 99 - bool "Symmetric multi-processing support (EXPERIMENTAL)" 99 + bool "Symmetric multi-processing support" 100 100 default n 101 101 depends on BROKEN 102 102 help ··· 126 126 default "32" 127 127 128 128 config HIGHMEM 129 - bool "Highmem support (EXPERIMENTAL)" 129 + bool "Highmem support" 130 130 depends on !64BIT && BROKEN 131 131 default n 132 132 help
+10 -12
arch/x86/Kconfig
··· 222 222 223 223 config HAVE_INTEL_TXT 224 224 def_bool y 225 - depends on EXPERIMENTAL && INTEL_IOMMU && ACPI 225 + depends on INTEL_IOMMU && ACPI 226 226 227 227 config X86_32_SMP 228 228 def_bool y ··· 617 617 618 618 config PARAVIRT_SPINLOCKS 619 619 bool "Paravirtualization layer for spinlocks" 620 - depends on PARAVIRT && SMP && EXPERIMENTAL 620 + depends on PARAVIRT && SMP 621 621 ---help--- 622 622 Paravirtualized spinlocks allow a pvops backend to replace the 623 623 spinlock implementation with something virtualization-friendly ··· 729 729 config CALGARY_IOMMU 730 730 bool "IBM Calgary IOMMU support" 731 731 select SWIOTLB 732 - depends on X86_64 && PCI && EXPERIMENTAL 732 + depends on X86_64 && PCI 733 733 ---help--- 734 734 Support for hardware IOMMUs in IBM's xSeries x366 and x460 735 735 systems. Needed to run systems with more than 3GB of memory ··· 771 771 772 772 config MAXSMP 773 773 bool "Enable Maximum number of SMP Processors and NUMA Nodes" 774 - depends on X86_64 && SMP && DEBUG_KERNEL && EXPERIMENTAL 774 + depends on X86_64 && SMP && DEBUG_KERNEL 775 775 select CPUMASK_OFFSTACK 776 776 ---help--- 777 777 Enable maximum number of CPUS and NUMA Nodes for this architecture. ··· 1107 1107 endchoice 1108 1108 1109 1109 choice 1110 - depends on EXPERIMENTAL 1111 1110 prompt "Memory split" if EXPERT 1112 1111 default VMSPLIT_3G 1113 1112 depends on X86_32 ··· 1183 1184 config NUMA 1184 1185 bool "Numa Memory Allocation and Scheduler Support" 1185 1186 depends on SMP 1186 - depends on X86_64 || (X86_32 && HIGHMEM64G && (X86_NUMAQ || X86_BIGSMP || X86_SUMMIT && ACPI) && EXPERIMENTAL) 1187 + depends on X86_64 || (X86_32 && HIGHMEM64G && (X86_NUMAQ || X86_BIGSMP || X86_SUMMIT && ACPI)) 1187 1188 default y if (X86_NUMAQ || X86_SUMMIT || X86_BIGSMP) 1188 1189 ---help--- 1189 1190 Enable NUMA (Non Uniform Memory Access) support. ··· 1278 1279 1279 1280 config ARCH_SPARSEMEM_ENABLE 1280 1281 def_bool y 1281 - depends on X86_64 || NUMA || (EXPERIMENTAL && X86_32) || X86_32_NON_STANDARD 1282 + depends on X86_64 || NUMA || X86_32 || X86_32_NON_STANDARD 1282 1283 select SPARSEMEM_STATIC if X86_32 1283 1284 select SPARSEMEM_VMEMMAP_ENABLE if X86_64 1284 1285 ··· 1592 1593 For more details see Documentation/kdump/kdump.txt 1593 1594 1594 1595 config KEXEC_JUMP 1595 - bool "kexec jump (EXPERIMENTAL)" 1596 - depends on EXPERIMENTAL 1596 + bool "kexec jump" 1597 1597 depends on KEXEC && HIBERNATION 1598 1598 ---help--- 1599 1599 Jump between original kernel and kexeced kernel and invoke ··· 2035 2037 2036 2038 config PCI_CNB20LE_QUIRK 2037 2039 bool "Read CNB20LE Host Bridge Windows" if EXPERT 2038 - depends on PCI && EXPERIMENTAL 2040 + depends on PCI 2039 2041 help 2040 2042 Read the PCI windows out of the CNB20LE host bridge. This allows 2041 2043 PCI hotplug to work on systems with the CNB20LE chipset which do ··· 2229 2231 Support old a.out binaries in the 32bit emulation. 2230 2232 2231 2233 config X86_X32 2232 - bool "x32 ABI for 64-bit mode (EXPERIMENTAL)" 2233 - depends on X86_64 && IA32_EMULATION && EXPERIMENTAL 2234 + bool "x32 ABI for 64-bit mode" 2235 + depends on X86_64 && IA32_EMULATION 2234 2236 ---help--- 2235 2237 Include code to run binaries for the x32 native 32-bit ABI 2236 2238 for 64-bit processors. An x32 process gets access to the
+1 -2
arch/x86/um/Kconfig
··· 37 37 def_bool !RWSEM_XCHGADD_ALGORITHM 38 38 39 39 config 3_LEVEL_PGTABLES 40 - bool "Three-level pagetables (EXPERIMENTAL)" if !64BIT 40 + bool "Three-level pagetables" if !64BIT 41 41 default 64BIT 42 - depends on EXPERIMENTAL 43 42 help 44 43 Three-level pagetables will let UML have more than 4G of physical 45 44 memory. All the memory that can't be mapped directly will be treated
+5 -10
crypto/Kconfig
··· 134 134 These are 'Null' algorithms, used by IPsec, which do nothing. 135 135 136 136 config CRYPTO_PCRYPT 137 - tristate "Parallel crypto engine (EXPERIMENTAL)" 138 - depends on SMP && EXPERIMENTAL 137 + tristate "Parallel crypto engine" 138 + depends on SMP 139 139 select PADATA 140 140 select CRYPTO_MANAGER 141 141 select CRYPTO_AEAD ··· 292 292 293 293 config CRYPTO_XCBC 294 294 tristate "XCBC support" 295 - depends on EXPERIMENTAL 296 295 select CRYPTO_HASH 297 296 select CRYPTO_MANAGER 298 297 help ··· 302 303 303 304 config CRYPTO_VMAC 304 305 tristate "VMAC support" 305 - depends on EXPERIMENTAL 306 306 select CRYPTO_HASH 307 307 select CRYPTO_MANAGER 308 308 help ··· 930 932 <http://www.larc.usp.br/~pbarreto/KhazadPage.html> 931 933 932 934 config CRYPTO_SALSA20 933 - tristate "Salsa20 stream cipher algorithm (EXPERIMENTAL)" 934 - depends on EXPERIMENTAL 935 + tristate "Salsa20 stream cipher algorithm" 935 936 select CRYPTO_BLKCIPHER 936 937 help 937 938 Salsa20 stream cipher algorithm. ··· 942 945 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html> 943 946 944 947 config CRYPTO_SALSA20_586 945 - tristate "Salsa20 stream cipher algorithm (i586) (EXPERIMENTAL)" 948 + tristate "Salsa20 stream cipher algorithm (i586)" 946 949 depends on (X86 || UML_X86) && !64BIT 947 - depends on EXPERIMENTAL 948 950 select CRYPTO_BLKCIPHER 949 951 help 950 952 Salsa20 stream cipher algorithm. ··· 955 959 Bernstein <djb@cr.yp.to>. See <http://cr.yp.to/snuffle.html> 956 960 957 961 config CRYPTO_SALSA20_X86_64 958 - tristate "Salsa20 stream cipher algorithm (x86_64) (EXPERIMENTAL)" 962 + tristate "Salsa20 stream cipher algorithm (x86_64)" 959 963 depends on (X86 || UML_X86) && 64BIT 960 - depends on EXPERIMENTAL 961 964 select CRYPTO_BLKCIPHER 962 965 help 963 966 Salsa20 stream cipher algorithm.
+2 -2
drivers/cpufreq/Kconfig.arm
··· 21 21 If in doubt, say N. 22 22 23 23 config ARM_S3C2416_CPUFREQ_VCORESCALE 24 - bool "Allow voltage scaling for S3C2416 arm core (EXPERIMENTAL)" 25 - depends on ARM_S3C2416_CPUFREQ && REGULATOR && EXPERIMENTAL 24 + bool "Allow voltage scaling for S3C2416 arm core" 25 + depends on ARM_S3C2416_CPUFREQ && REGULATOR 26 26 help 27 27 Enable CPU voltage scaling when entering the dvs mode. 28 28 It uses information gathered through existing hardware and
+3 -3
drivers/cpufreq/Kconfig.x86
··· 174 174 config X86_SPEEDSTEP_SMI 175 175 tristate "Intel SpeedStep on 440BX/ZX/MX chipsets (SMI interface)" 176 176 select CPU_FREQ_TABLE 177 - depends on X86_32 && EXPERIMENTAL 177 + depends on X86_32 178 178 help 179 179 This adds the CPUFreq driver for certain mobile Intel Pentium III 180 180 (Coppermine), all mobile Intel Pentium III-M (Tualatin) ··· 206 206 207 207 config X86_CPUFREQ_NFORCE2 208 208 tristate "nVidia nForce2 FSB changing" 209 - depends on X86_32 && EXPERIMENTAL 209 + depends on X86_32 210 210 help 211 211 This adds the CPUFreq driver for FSB changing on nVidia nForce2 212 212 platforms. ··· 242 242 config X86_E_POWERSAVER 243 243 tristate "VIA C7 Enhanced PowerSaver (DANGEROUS)" 244 244 select CPU_FREQ_TABLE 245 - depends on X86_32 && EXPERIMENTAL 245 + depends on X86_32 246 246 help 247 247 This adds the CPUFreq driver for VIA C7 processors. However, this driver 248 248 does not have any safeguards to prevent operating the CPU out of spec
+1 -1
drivers/gpu/drm/udl/Kconfig
··· 1 1 config DRM_UDL 2 2 tristate "DisplayLink" 3 - depends on DRM && EXPERIMENTAL 3 + depends on DRM 4 4 depends on USB_ARCH_HAS_HCD 5 5 select DRM_USB 6 6 select FB_SYS_FILLRECT
-2
drivers/i2c/muxes/Kconfig
··· 19 19 20 20 config I2C_MUX_PCA9541 21 21 tristate "NXP PCA9541 I2C Master Selector" 22 - depends on EXPERIMENTAL 23 22 help 24 23 If you say yes here you get support for the NXP PCA9541 25 24 I2C Master Selector. ··· 28 29 29 30 config I2C_MUX_PCA954x 30 31 tristate "Philips PCA954x I2C Mux/switches" 31 - depends on EXPERIMENTAL 32 32 help 33 33 If you say yes here you get support for the Philips PCA954x 34 34 I2C mux/switch devices.
+3 -5
drivers/ide/Kconfig
··· 322 322 which otherwise might not be supported. 323 323 324 324 config BLK_DEV_OPTI621 325 - tristate "OPTi 82C621 chipset enhanced support (EXPERIMENTAL)" 326 - depends on EXPERIMENTAL 325 + tristate "OPTi 82C621 chipset enhanced support" 327 326 select BLK_DEV_IDEPCI 328 327 help 329 328 This is a driver for the OPTi 82C621 EIDE controller. ··· 416 417 417 418 config BLK_DEV_CS5520 418 419 tristate "Cyrix CS5510/20 MediaGX chipset support (VERY EXPERIMENTAL)" 419 - depends on EXPERIMENTAL 420 420 select BLK_DEV_IDEDMA_PCI 421 421 help 422 422 Include support for PIO tuning and virtual DMA on the Cyrix MediaGX ··· 759 761 use Gayle IDE interfaces on the Zorro expansion bus. 760 762 761 763 config BLK_DEV_BUDDHA 762 - tristate "Buddha/Catweasel/X-Surf IDE interface support (EXPERIMENTAL)" 763 - depends on ZORRO && EXPERIMENTAL 764 + tristate "Buddha/Catweasel/X-Surf IDE interface support" 765 + depends on ZORRO 764 766 help 765 767 This is the IDE driver for the IDE interfaces on the Buddha, Catweasel 766 768 and X-Surf expansion boards. It supports up to two interfaces on the
+1 -1
drivers/lguest/Kconfig
··· 1 1 config LGUEST 2 2 tristate "Linux hypervisor example code" 3 - depends on X86_32 && EXPERIMENTAL && EVENTFD 3 + depends on X86_32 && EVENTFD 4 4 select HVC_DRIVER 5 5 ---help--- 6 6 This is a very simple module which allows you to run
+3 -4
drivers/media/Kconfig
··· 79 79 # 80 80 81 81 config MEDIA_CONTROLLER 82 - bool "Media Controller API (EXPERIMENTAL)" 83 - depends on EXPERIMENTAL 82 + bool "Media Controller API" 84 83 depends on MEDIA_CAMERA_SUPPORT 85 84 ---help--- 86 85 Enable the media controller API used to query media devices internal ··· 99 100 default y 100 101 101 102 config VIDEO_V4L2_SUBDEV_API 102 - bool "V4L2 sub-device userspace API (EXPERIMENTAL)" 103 - depends on VIDEO_DEV && MEDIA_CONTROLLER && EXPERIMENTAL 103 + bool "V4L2 sub-device userspace API" 104 + depends on VIDEO_DEV && MEDIA_CONTROLLER 104 105 ---help--- 105 106 Enables the V4L2 sub-device pad-level userspace API used to configure 106 107 video format, size and frame rate between hardware blocks.
+1 -1
drivers/media/pci/cx25821/Kconfig
··· 18 18 19 19 config VIDEO_CX25821_ALSA 20 20 tristate "Conexant 25821 DMA audio support" 21 - depends on VIDEO_CX25821 && SND && EXPERIMENTAL 21 + depends on VIDEO_CX25821 && SND 22 22 select SND_PCM 23 23 ---help--- 24 24 This is a video4linux driver for direct (DMA) audio on
-1
drivers/media/platform/s5p-fimc/Kconfig
··· 2 2 config VIDEO_SAMSUNG_S5P_FIMC 3 3 bool "Samsung S5P/EXYNOS SoC camera interface driver (experimental)" 4 4 depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API && PLAT_S5P && PM_RUNTIME 5 - depends on EXPERIMENTAL 6 5 help 7 6 Say Y here to enable camera host interface devices for 8 7 Samsung S5P and EXYNOS SoC series.
+1 -2
drivers/media/platform/s5p-tv/Kconfig
··· 7 7 # Licensed under GPL 8 8 9 9 config VIDEO_SAMSUNG_S5P_TV 10 - bool "Samsung TV driver for S5P platform (experimental)" 10 + bool "Samsung TV driver for S5P platform" 11 11 depends on PLAT_S5P && PM_RUNTIME 12 - depends on EXPERIMENTAL 13 12 default n 14 13 ---help--- 15 14 Say Y here to enable selecting the TV output devices for
+4 -4
drivers/media/usb/pvrusb2/Kconfig
··· 17 17 module will be called pvrusb2 18 18 19 19 config VIDEO_PVRUSB2_SYSFS 20 - bool "pvrusb2 sysfs support (EXPERIMENTAL)" 20 + bool "pvrusb2 sysfs support" 21 21 default y 22 - depends on VIDEO_PVRUSB2 && SYSFS && EXPERIMENTAL 22 + depends on VIDEO_PVRUSB2 && SYSFS 23 23 ---help--- 24 24 This option enables the operation of a sysfs based 25 25 interface for query and control of the pvrusb2 driver. ··· 33 33 Note: This feature is experimental and subject to change. 34 34 35 35 config VIDEO_PVRUSB2_DVB 36 - bool "pvrusb2 ATSC/DVB support (EXPERIMENTAL)" 36 + bool "pvrusb2 ATSC/DVB support" 37 37 default y 38 - depends on VIDEO_PVRUSB2 && DVB_CORE && EXPERIMENTAL 38 + depends on VIDEO_PVRUSB2 && DVB_CORE 39 39 select DVB_LGDT330X if MEDIA_SUBDRV_AUTOSELECT 40 40 select DVB_S5H1409 if MEDIA_SUBDRV_AUTOSELECT 41 41 select DVB_S5H1411 if MEDIA_SUBDRV_AUTOSELECT
+1 -2
drivers/mmc/core/Kconfig
··· 18 18 module parameter "removable=0" or "removable=1". 19 19 20 20 config MMC_CLKGATE 21 - bool "MMC host clock gating (EXPERIMENTAL)" 22 - depends on EXPERIMENTAL 21 + bool "MMC host clock gating" 23 22 help 24 23 This will attempt to aggressively gate the clock to the MMC card. 25 24 This is done to save power due to gating off the logic and bus
+8 -12
drivers/mmc/host/Kconfig
··· 69 69 If unsure, say N. 70 70 71 71 config MMC_RICOH_MMC 72 - bool "Ricoh MMC Controller Disabler (EXPERIMENTAL)" 72 + bool "Ricoh MMC Controller Disabler" 73 73 depends on MMC_SDHCI_PCI 74 74 help 75 75 This adds a pci quirk to disable Ricoh MMC Controller. This ··· 186 186 often referrered to as the HSMMC block in some of the Samsung S3C 187 187 range of SoC. 188 188 189 - Note, due to the problems with DMA, the DMA support is only 190 - available with CONFIG_EXPERIMENTAL is selected. 191 - 192 189 If you have a controller with this interface, say Y or M here. 193 190 194 191 If unsure, say N. ··· 230 233 231 234 config MMC_SDHCI_S3C_DMA 232 235 bool "DMA support on S3C SDHCI" 233 - depends on MMC_SDHCI_S3C && EXPERIMENTAL 236 + depends on MMC_SDHCI_S3C 234 237 help 235 238 Enable DMA support on the Samsung S3C SDHCI glue. The DMA 236 239 has proved to be problematic if the controller encounters ··· 327 330 If unsure, say N. 328 331 329 332 config MMC_TIFM_SD 330 - tristate "TI Flash Media MMC/SD Interface support (EXPERIMENTAL)" 331 - depends on EXPERIMENTAL && PCI 333 + tristate "TI Flash Media MMC/SD Interface support" 334 + depends on PCI 332 335 select TIFM_CORE 333 336 help 334 337 Say Y here if you want to be able to access MMC/SD cards with ··· 407 410 the S3C MCI driver. 408 411 409 412 config MMC_S3C_DMA 410 - bool "Use DMA transfers only (EXPERIMENTAL)" 411 - depends on EXPERIMENTAL 413 + bool "Use DMA transfers only" 412 414 help 413 415 Use DMA to transfer data between memory and the hardare. 414 416 ··· 416 420 option is useful. 417 421 418 422 config MMC_S3C_PIODMA 419 - bool "Support for both PIO and DMA (EXPERIMENTAL)" 423 + bool "Support for both PIO and DMA" 420 424 help 421 425 Compile both the PIO and DMA transfer routines into the 422 426 driver and let the platform select at run-time which one ··· 427 431 endchoice 428 432 429 433 config MMC_SDRICOH_CS 430 - tristate "MMC/SD driver for Ricoh Bay1Controllers (EXPERIMENTAL)" 431 - depends on EXPERIMENTAL && PCI && PCMCIA 434 + tristate "MMC/SD driver for Ricoh Bay1Controllers" 435 + depends on PCI && PCMCIA 432 436 help 433 437 Say Y here if your Notebook reports a Ricoh Bay1Controller PCMCIA 434 438 card whenever you insert a MMC or SD card into the card slot.
+1 -1
drivers/mtd/Kconfig
··· 291 291 292 292 config SM_FTL 293 293 tristate "SmartMedia/xD new translation layer" 294 - depends on EXPERIMENTAL && BLOCK 294 + depends on BLOCK 295 295 select MTD_BLKDEVS 296 296 select MTD_NAND_ECC 297 297 help
+1 -1
drivers/mtd/chips/Kconfig
··· 225 225 226 226 config MTD_XIP 227 227 bool "XIP aware MTD support" 228 - depends on !SMP && (MTD_CFI_INTELEXT || MTD_CFI_AMDSTD) && EXPERIMENTAL && ARCH_MTD_XIP 228 + depends on !SMP && (MTD_CFI_INTELEXT || MTD_CFI_AMDSTD) && ARCH_MTD_XIP 229 229 default y if XIP_KERNEL 230 230 help 231 231 This allows MTD support to work with flash memory which is also
+2 -2
drivers/mtd/devices/Kconfig
··· 52 52 53 53 config MTD_DATAFLASH 54 54 tristate "Support for AT45xxx DataFlash" 55 - depends on SPI_MASTER && EXPERIMENTAL 55 + depends on SPI_MASTER 56 56 help 57 57 This enables access to AT45xxx DataFlash chips, using SPI. 58 58 Sometimes DataFlash chips are packaged inside MMC-format ··· 81 81 82 82 config MTD_M25P80 83 83 tristate "Support most SPI Flash chips (AT26DF, M25P, W25X, ...)" 84 - depends on SPI_MASTER && EXPERIMENTAL 84 + depends on SPI_MASTER 85 85 help 86 86 This enables access to most modern SPI flash chips, used for 87 87 program and data storage. Series supported include Atmel AT26DF,
+3 -4
drivers/mtd/nand/Kconfig
··· 260 260 approximately 5mA of power when there is nothing happening. 261 261 262 262 config MTD_NAND_DISKONCHIP 263 - tristate "DiskOnChip 2000, Millennium and Millennium Plus (NAND reimplementation) (EXPERIMENTAL)" 264 - depends on EXPERIMENTAL 263 + tristate "DiskOnChip 2000, Millennium and Millennium Plus (NAND reimplementation)" 265 264 depends on HAS_IOMEM 266 265 select REED_SOLOMON 267 266 select REED_SOLOMON_DEC16 ··· 330 331 parameter "inftl_bbt_write=1". 331 332 332 333 config MTD_NAND_DOCG4 333 - tristate "Support for DiskOnChip G4 (EXPERIMENTAL)" 334 - depends on EXPERIMENTAL && HAS_IOMEM 334 + tristate "Support for DiskOnChip G4" 335 + depends on HAS_IOMEM 335 336 select BCH 336 337 select BITREVERSE 337 338 help
+4 -5
drivers/net/Kconfig
··· 123 123 source "drivers/net/team/Kconfig" 124 124 125 125 config MACVLAN 126 - tristate "MAC-VLAN support (EXPERIMENTAL)" 127 - depends on EXPERIMENTAL 126 + tristate "MAC-VLAN support" 128 127 ---help--- 129 128 This allows one to create virtual interfaces that map packets to 130 129 or from specific MAC addresses to a particular interface. ··· 137 138 will be called macvlan. 138 139 139 140 config MACVTAP 140 - tristate "MAC-VLAN based tap driver (EXPERIMENTAL)" 141 + tristate "MAC-VLAN based tap driver" 141 142 depends on MACVLAN 142 143 help 143 144 This adds a specialized tap character device driver that is based ··· 233 234 versa. 234 235 235 236 config VIRTIO_NET 236 - tristate "Virtio network driver (EXPERIMENTAL)" 237 - depends on EXPERIMENTAL && VIRTIO 237 + tristate "Virtio network driver" 238 + depends on VIRTIO 238 239 ---help--- 239 240 This is the virtual network driver for virtio. It can be used with 240 241 lguest or QEMU based VMMs (like KVM or Xen). Say Y or M.
+9 -12
drivers/net/ethernet/8390/Kconfig
··· 5 5 config NET_VENDOR_8390 6 6 bool "National Semi-conductor 8390 devices" 7 7 default y 8 - depends on NET_VENDOR_NATSEMI && (AMIGA_PCMCIA || PCI || SUPERH || \ 9 - ISA || MCA || EISA || MAC || M32R || MACH_TX49XX || \ 10 - MCA_LEGACY || H8300 || ARM || MIPS || ZORRO || PCMCIA || \ 11 - EXPERIMENTAL) 8 + depends on NET_VENDOR_NATSEMI 12 9 ---help--- 13 10 If you have a network (Ethernet) card belonging to this class, say Y 14 11 and read the Ethernet-HOWTO, available from ··· 31 34 will be called 3c503. 32 35 33 36 config AC3200 34 - tristate "Ansel Communications EISA 3200 support (EXPERIMENTAL)" 35 - depends on PCI && (ISA || EISA) && EXPERIMENTAL 37 + tristate "Ansel Communications EISA 3200 support" 38 + depends on PCI && (ISA || EISA) 36 39 select CRC32 37 40 ---help--- 38 41 If you have a network (Ethernet) card of this type, say Y and read ··· 84 87 will be called e2100. 85 88 86 89 config ES3210 87 - tristate "Racal-Interlan EISA ES3210 support (EXPERIMENTAL)" 88 - depends on PCI && EISA && EXPERIMENTAL 90 + tristate "Racal-Interlan EISA ES3210 support" 91 + depends on PCI && EISA 89 92 select CRC32 90 93 ---help--- 91 94 If you have a network (Ethernet) card of this type, say Y and read ··· 138 141 should say Y to this option if you wish to use it with Linux. 139 142 140 143 config LNE390 141 - tristate "Mylex EISA LNE390A/B support (EXPERIMENTAL)" 142 - depends on PCI && EISA && EXPERIMENTAL 144 + tristate "Mylex EISA LNE390A/B support" 145 + depends on PCI && EISA 143 146 select CRC32 144 147 ---help--- 145 148 If you have a network (Ethernet) card of this type, say Y and read ··· 224 227 will be called apne. 225 228 226 229 config NE3210 227 - tristate "Novell/Eagle/Microdyne NE3210 EISA support (EXPERIMENTAL)" 228 - depends on PCI && EISA && EXPERIMENTAL 230 + tristate "Novell/Eagle/Microdyne NE3210 EISA support" 231 + depends on PCI && EISA 229 232 select CRC32 230 233 ---help--- 231 234 If you have a network (Ethernet) card of this type, say Y and read
+4 -4
drivers/net/ethernet/atheros/Kconfig
··· 44 44 will be called atl1. 45 45 46 46 config ATL1E 47 - tristate "Atheros L1E Gigabit Ethernet support (EXPERIMENTAL)" 48 - depends on PCI && EXPERIMENTAL 47 + tristate "Atheros L1E Gigabit Ethernet support" 48 + depends on PCI 49 49 select CRC32 50 50 select NET_CORE 51 51 select MII ··· 56 56 will be called atl1e. 57 57 58 58 config ATL1C 59 - tristate "Atheros L1C Gigabit Ethernet support (EXPERIMENTAL)" 60 - depends on PCI && EXPERIMENTAL 59 + tristate "Atheros L1C Gigabit Ethernet support" 60 + depends on PCI 61 61 select CRC32 62 62 select NET_CORE 63 63 select MII
+2 -2
drivers/net/ethernet/dec/tulip/Kconfig
··· 57 57 be called tulip. 58 58 59 59 config TULIP_MWI 60 - bool "New bus configuration (EXPERIMENTAL)" 61 - depends on TULIP && EXPERIMENTAL 60 + bool "New bus configuration" 61 + depends on TULIP 62 62 ---help--- 63 63 This configures your Tulip card specifically for the card and 64 64 system cache line size type you are using.
+5 -7
drivers/net/ethernet/i825xx/Kconfig
··· 5 5 config NET_VENDOR_I825XX 6 6 bool "Intel (82586/82593/82596) devices" 7 7 default y 8 - depends on NET_VENDOR_INTEL && (ISA || ISA_DMA_API || ARM || \ 9 - ARCH_ACORN || MCA || MCA_LEGACY || SNI_RM || SUN3 || \ 10 - GSC || BVME6000 || MVME16x || EXPERIMENTAL) 8 + depends on NET_VENDOR_INTEL 11 9 ---help--- 12 10 If you have a network (Ethernet) card belonging to this class, say Y 13 11 and read the Ethernet-HOWTO, available from ··· 31 33 will be called 3c505. 32 34 33 35 config EL16 34 - tristate "3c507 \"EtherLink 16\" support (EXPERIMENTAL)" 35 - depends on ISA && EXPERIMENTAL 36 + tristate "3c507 \"EtherLink 16\" support" 37 + depends on ISA 36 38 ---help--- 37 39 If you have a network (Ethernet) card of this type, say Y and read 38 40 the Ethernet-HOWTO, available from ··· 147 149 VME boards. 148 150 149 151 config ZNET 150 - tristate "Zenith Z-Note support (EXPERIMENTAL)" 151 - depends on EXPERIMENTAL && ISA_DMA_API && X86 152 + tristate "Zenith Z-Note support" 153 + depends on ISA_DMA_API && X86 152 154 ---help--- 153 155 The Zenith Z-Note notebook computer has a built-in network 154 156 (Ethernet) card, and this is the Linux driver for it. Note that the
-5
drivers/net/ethernet/intel/Kconfig
··· 5 5 config NET_VENDOR_INTEL 6 6 bool "Intel devices" 7 7 default y 8 - depends on PCI || PCI_MSI || ISA || ISA_DMA_API || ARM || \ 9 - ARCH_ACORN || MCA || MCA_LEGACY || SNI_RM || SUN3 || \ 10 - GSC || BVME6000 || MVME16x || \ 11 - (ARM && ARCH_IXP4XX && IXP4XX_NPE && IXP4XX_QMGR) || \ 12 - EXPERIMENTAL 13 8 ---help--- 14 9 If you have a network (Ethernet) card belonging to this class, say Y 15 10 and read the Ethernet-HOWTO, available from
-3
drivers/net/ethernet/natsemi/Kconfig
··· 5 5 config NET_VENDOR_NATSEMI 6 6 bool "National Semi-conductor devices" 7 7 default y 8 - depends on AMIGA_PCMCIA || ARM || EISA || EXPERIMENTAL || H8300 || \ 9 - ISA || M32R || MAC || MACH_JAZZ || MACH_TX49XX || MIPS || \ 10 - PCI || PCMCIA || SUPERH || XTENSA_PLATFORM_XT2000 || ZORRO 11 8 ---help--- 12 9 If you have a network (Ethernet) card belonging to this class, say Y 13 10 and read the Ethernet-HOWTO, available from
+2 -2
drivers/net/ethernet/packetengines/Kconfig
··· 32 32 called hamachi. 33 33 34 34 config YELLOWFIN 35 - tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)" 36 - depends on PCI && EXPERIMENTAL 35 + tristate "Packet Engines Yellowfin Gigabit-NIC support" 36 + depends on PCI 37 37 select CRC32 38 38 ---help--- 39 39 Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
+2 -2
drivers/net/ethernet/realtek/Kconfig
··· 34 34 will be called atp. 35 35 36 36 config 8139CP 37 - tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)" 38 - depends on PCI && EXPERIMENTAL 37 + tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support" 38 + depends on PCI 39 39 select CRC32 40 40 select NET_CORE 41 41 select MII
+3 -3
drivers/net/ethernet/silan/Kconfig
··· 5 5 config NET_VENDOR_SILAN 6 6 bool "Silan devices" 7 7 default y 8 - depends on PCI && EXPERIMENTAL 8 + depends on PCI 9 9 ---help--- 10 10 If you have a network (Ethernet) card belonging to this class, say Y 11 11 and read the Ethernet-HOWTO, available from ··· 19 19 if NET_VENDOR_SILAN 20 20 21 21 config SC92031 22 - tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)" 23 - depends on PCI && EXPERIMENTAL 22 + tristate "Silan SC92031 PCI Fast Ethernet Adapter driver" 23 + depends on PCI 24 24 select CRC32 25 25 ---help--- 26 26 This is a driver for the Fast Ethernet PCI network cards based on
+2 -2
drivers/net/ethernet/ti/Kconfig
··· 88 88 Please email feedback to <torben.mathiasen@compaq.com>. 89 89 90 90 config CPMAC 91 - tristate "TI AR7 CPMAC Ethernet support (EXPERIMENTAL)" 92 - depends on EXPERIMENTAL && AR7 91 + tristate "TI AR7 CPMAC Ethernet support" 92 + depends on AR7 93 93 select PHYLIB 94 94 ---help--- 95 95 TI AR7 CPMAC Ethernet support
+1 -2
drivers/net/team/Kconfig
··· 1 1 menuconfig NET_TEAM 2 - tristate "Ethernet team driver support (EXPERIMENTAL)" 3 - depends on EXPERIMENTAL 2 + tristate "Ethernet team driver support" 4 3 ---help--- 5 4 This allows one to create virtual interfaces that teams together 6 5 multiple ethernet devices.
+7 -9
drivers/net/usb/Kconfig
··· 8 8 depends on USB && NET 9 9 10 10 config USB_CATC 11 - tristate "USB CATC NetMate-based Ethernet device support (EXPERIMENTAL)" 12 - depends on EXPERIMENTAL 11 + tristate "USB CATC NetMate-based Ethernet device support" 13 12 select CRC32 14 13 ---help--- 15 14 Say Y if you want to use one of the following 10Mbps USB Ethernet ··· 82 83 module will be called pegasus. 83 84 84 85 config USB_RTL8150 85 - tristate "USB RTL8150 based ethernet device support (EXPERIMENTAL)" 86 - depends on EXPERIMENTAL 86 + tristate "USB RTL8150 based ethernet device support" 87 87 select NET_CORE 88 88 select MII 89 89 help ··· 186 188 187 189 config USB_NET_CDC_EEM 188 190 tristate "CDC EEM support" 189 - depends on USB_USBNET && EXPERIMENTAL 191 + depends on USB_USBNET 190 192 help 191 193 This option supports devices conforming to the Communication Device 192 194 Class (CDC) Ethernet Emulation Model, a specification that's easy to ··· 285 287 tristate "Prolific PL-2301/2302/25A1 based cables" 286 288 # if the handshake/init/reset problems, from original 'plusb', 287 289 # are ever resolved ... then remove "experimental" 288 - depends on USB_USBNET && EXPERIMENTAL 290 + depends on USB_USBNET 289 291 help 290 292 Choose this option if you're using a host-to-host cable 291 293 with one of these chips. ··· 299 301 adapters marketed under the DeLOCK brand. 300 302 301 303 config USB_NET_RNDIS_HOST 302 - tristate "Host for RNDIS and ActiveSync devices (EXPERIMENTAL)" 303 - depends on USB_USBNET && EXPERIMENTAL 304 + tristate "Host for RNDIS and ActiveSync devices" 305 + depends on USB_USBNET 304 306 select USB_NET_CDCETHER 305 307 help 306 308 This option enables hosting "Remote NDIS" USB networking links, ··· 378 380 379 381 config USB_KC2190 380 382 boolean "KT Technology KC2190 based cables (InstaNet)" 381 - depends on USB_NET_CDC_SUBSET && EXPERIMENTAL 383 + depends on USB_NET_CDC_SUBSET 382 384 help 383 385 Choose this option if you're using a host-to-host cable 384 386 with one of these chips.
+4 -4
drivers/net/wan/Kconfig
··· 375 375 If unsure, say N. 376 376 377 377 config CYCLADES_SYNC 378 - tristate "Cyclom 2X(tm) cards (EXPERIMENTAL)" 378 + tristate "Cyclom 2X(tm) cards" 379 379 depends on WAN_ROUTER_DRIVERS && (PCI || ISA) 380 380 ---help--- 381 381 Cyclom 2X from Cyclades Corporation <http://www.avocent.com/> is an ··· 403 403 module will be called cyclomx. 404 404 405 405 config CYCLOMX_X25 406 - bool "Cyclom 2X X.25 support (EXPERIMENTAL)" 406 + bool "Cyclom 2X X.25 support" 407 407 depends on CYCLADES_SYNC 408 408 help 409 409 Connect a Cyclom 2X card to an X.25 network. ··· 412 412 413 413 # X.25 network drivers 414 414 config LAPBETHER 415 - tristate "LAPB over Ethernet driver (EXPERIMENTAL)" 415 + tristate "LAPB over Ethernet driver" 416 416 depends on LAPB && X25 417 417 ---help--- 418 418 Driver for a pseudo device (typically called /dev/lapb0) which allows ··· 428 428 If unsure, say N. 429 429 430 430 config X25_ASY 431 - tristate "X.25 async driver (EXPERIMENTAL)" 431 + tristate "X.25 async driver" 432 432 depends on LAPB && X25 433 433 ---help--- 434 434 Send and receive X.25 frames over regular asynchronous serial
+2 -2
drivers/pcmcia/Kconfig
··· 36 36 If unsure, say Y. 37 37 38 38 config PCMCIA_LOAD_CIS 39 - bool "Load CIS updates from userspace (EXPERIMENTAL)" 40 - depends on PCMCIA && EXPERIMENTAL 39 + bool "Load CIS updates from userspace" 40 + depends on PCMCIA 41 41 select FW_LOADER 42 42 default y 43 43 help
+1 -2
drivers/rpmsg/Kconfig
··· 1 - menu "Rpmsg drivers (EXPERIMENTAL)" 1 + menu "Rpmsg drivers" 2 2 3 3 # RPMSG always gets selected by whoever wants it 4 4 config RPMSG 5 5 tristate 6 6 select VIRTIO 7 - depends on EXPERIMENTAL 8 7 9 8 endmenu
+3 -4
drivers/sbus/char/Kconfig
··· 21 21 able to upgrade the OBP firmware, say Y here. 22 22 23 23 config TADPOLE_TS102_UCTRL 24 - tristate "Tadpole TS102 Microcontroller support (EXPERIMENTAL)" 25 - depends on EXPERIMENTAL 24 + tristate "Tadpole TS102 Microcontroller support" 26 25 help 27 26 Say Y here to directly support the TS102 Microcontroller interface 28 27 on the Tadpole Sparcbook 3. This device handles power-management ··· 29 30 monitors and mice. 30 31 31 32 config SUN_JSFLASH 32 - tristate "JavaStation OS Flash SIMM (EXPERIMENTAL)" 33 - depends on EXPERIMENTAL && SPARC32 33 + tristate "JavaStation OS Flash SIMM" 34 + depends on SPARC32 34 35 help 35 36 If you say Y here, you will be able to boot from your JavaStation's 36 37 Flash memory.
+4 -4
drivers/virtio/Kconfig
··· 8 8 menu "Virtio drivers" 9 9 10 10 config VIRTIO_PCI 11 - tristate "PCI driver for virtio devices (EXPERIMENTAL)" 12 - depends on PCI && EXPERIMENTAL 11 + tristate "PCI driver for virtio devices" 12 + depends on PCI 13 13 select VIRTIO 14 14 ---help--- 15 15 This drivers provides support for virtio based paravirtual device ··· 32 32 If unsure, say M. 33 33 34 34 config VIRTIO_MMIO 35 - tristate "Platform bus driver for memory mapped virtio devices (EXPERIMENTAL)" 36 - depends on HAS_IOMEM && EXPERIMENTAL 35 + tristate "Platform bus driver for memory mapped virtio devices" 36 + depends on HAS_IOMEM 37 37 select VIRTIO 38 38 ---help--- 39 39 This drivers provides support for memory mapped virtio
+2 -2
fs/ceph/Kconfig
··· 1 1 config CEPH_FS 2 - tristate "Ceph distributed file system (EXPERIMENTAL)" 3 - depends on INET && EXPERIMENTAL 2 + tristate "Ceph distributed file system" 3 + depends on INET 4 4 select CEPH_LIB 5 5 select LIBCRC32C 6 6 select CRYPTO_AES
+2 -2
fs/ecryptfs/Kconfig
··· 1 1 config ECRYPT_FS 2 - tristate "eCrypt filesystem layer support (EXPERIMENTAL)" 3 - depends on EXPERIMENTAL && KEYS && CRYPTO && (ENCRYPTED_KEYS || ENCRYPTED_KEYS=n) 2 + tristate "eCrypt filesystem layer support" 3 + depends on KEYS && CRYPTO && (ENCRYPTED_KEYS || ENCRYPTED_KEYS=n) 4 4 select CRYPTO_ECB 5 5 select CRYPTO_CBC 6 6 select CRYPTO_MD5
+1 -2
fs/nilfs2/Kconfig
··· 1 1 config NILFS2_FS 2 - tristate "NILFS2 file system support (EXPERIMENTAL)" 3 - depends on EXPERIMENTAL 2 + tristate "NILFS2 file system support" 4 3 select CRC32 5 4 help 6 5 NILFS2 is a log-structured file system (LFS) supporting continuous
+2 -2
fs/xfs/Kconfig
··· 70 70 If unsure, say N. 71 71 72 72 config XFS_DEBUG 73 - bool "XFS Debugging support (EXPERIMENTAL)" 74 - depends on XFS_FS && EXPERIMENTAL 73 + bool "XFS Debugging support" 74 + depends on XFS_FS 75 75 help 76 76 Say Y here to get an XFS build with many debugging features, 77 77 including ASSERT checks, function wrappers around macros,
+12 -42
init/Kconfig
··· 33 33 menu "General setup" 34 34 35 35 config EXPERIMENTAL 36 - bool "Prompt for development and/or incomplete code/drivers" 37 - ---help--- 38 - Some of the various things that Linux supports (such as network 39 - drivers, file systems, network protocols, etc.) can be in a state 40 - of development where the functionality, stability, or the level of 41 - testing is not yet high enough for general use. This is usually 42 - known as the "alpha-test" phase among developers. If a feature is 43 - currently in alpha-test, then the developers usually discourage 44 - uninformed widespread use of this feature by the general public to 45 - avoid "Why doesn't this work?" type mail messages. However, active 46 - testing and use of these systems is welcomed. Just be aware that it 47 - may not meet the normal level of reliability or it may fail to work 48 - in some special cases. Detailed bug reports from people familiar 49 - with the kernel internals are usually welcomed by the developers 50 - (before submitting bug reports, please read the documents 51 - <file:README>, <file:MAINTAINERS>, <file:REPORTING-BUGS>, 52 - <file:Documentation/BUG-HUNTING>, and 53 - <file:Documentation/oops-tracing.txt> in the kernel source). 54 - 55 - This option will also make obsoleted drivers available. These are 56 - drivers that have been replaced by something else, and/or are 57 - scheduled to be removed in a future kernel release. 58 - 59 - Unless you intend to help test and develop a feature or driver that 60 - falls into this category, or you have a situation that requires 61 - using these features, you should probably say N here, which will 62 - cause the configurator to present you with fewer choices. If 63 - you say Y here, you will be offered the choice of using features or 64 - drivers that are currently considered to be in the alpha-test phase. 36 + bool 37 + default y 65 38 66 39 config BROKEN 67 40 bool ··· 220 247 221 248 config POSIX_MQUEUE 222 249 bool "POSIX Message Queues" 223 - depends on NET && EXPERIMENTAL 250 + depends on NET 224 251 ---help--- 225 252 POSIX variant of message queues is a part of IPC. In POSIX message 226 253 queues every message has a priority which decides about succession ··· 366 393 at <http://www.gnu.org/software/acct/>. 367 394 368 395 config TASKSTATS 369 - bool "Export task/process statistics through netlink (EXPERIMENTAL)" 396 + bool "Export task/process statistics through netlink" 370 397 depends on NET 371 398 default n 372 399 help ··· 379 406 Say N if unsure. 380 407 381 408 config TASK_DELAY_ACCT 382 - bool "Enable per-task delay accounting (EXPERIMENTAL)" 409 + bool "Enable per-task delay accounting" 383 410 depends on TASKSTATS 384 411 help 385 412 Collect information on time spent by a task waiting for system ··· 390 417 Say N if unsure. 391 418 392 419 config TASK_XACCT 393 - bool "Enable extended accounting over taskstats (EXPERIMENTAL)" 420 + bool "Enable extended accounting over taskstats" 394 421 depends on TASKSTATS 395 422 help 396 423 Collect extended task accounting data and send the data ··· 399 426 Say N if unsure. 400 427 401 428 config TASK_IO_ACCOUNTING 402 - bool "Enable per-task storage I/O accounting (EXPERIMENTAL)" 429 + bool "Enable per-task storage I/O accounting" 403 430 depends on TASK_XACCT 404 431 help 405 432 Collect information on the number of bytes of storage I/O which this ··· 853 880 select this option (if, for some reason, they need to disable it 854 881 then swapaccount=0 does the trick). 855 882 config MEMCG_KMEM 856 - bool "Memory Resource Controller Kernel Memory accounting (EXPERIMENTAL)" 857 - depends on MEMCG && EXPERIMENTAL 883 + bool "Memory Resource Controller Kernel Memory accounting" 884 + depends on MEMCG 858 885 depends on SLUB || SLAB 859 886 help 860 887 The Kernel Memory extension for Memory Resource Controller can limit ··· 866 893 867 894 config CGROUP_HUGETLB 868 895 bool "HugeTLB Resource Controller for Control Groups" 869 - depends on RESOURCE_COUNTERS && HUGETLB_PAGE && EXPERIMENTAL 896 + depends on RESOURCE_COUNTERS && HUGETLB_PAGE 870 897 default n 871 898 help 872 899 Provides a cgroup Resource Controller for HugeTLB pages. ··· 905 932 906 933 config CFS_BANDWIDTH 907 934 bool "CPU bandwidth provisioning for FAIR_GROUP_SCHED" 908 - depends on EXPERIMENTAL 909 935 depends on FAIR_GROUP_SCHED 910 936 default n 911 937 help ··· 916 944 917 945 config RT_GROUP_SCHED 918 946 bool "Group scheduling for SCHED_RR/FIFO" 919 - depends on EXPERIMENTAL 920 947 depends on CGROUP_SCHED 921 948 default n 922 949 help ··· 997 1026 different IPC objects in different namespaces. 998 1027 999 1028 config USER_NS 1000 - bool "User namespace (EXPERIMENTAL)" 1001 - depends on EXPERIMENTAL 1029 + bool "User namespace" 1002 1030 depends on UIDGID_CONVERTED 1003 1031 select UIDGID_STRICT_TYPE_CHECKS 1004 1032 ··· 1578 1608 1579 1609 config MODULE_FORCE_UNLOAD 1580 1610 bool "Forced module unloading" 1581 - depends on MODULE_UNLOAD && EXPERIMENTAL 1611 + depends on MODULE_UNLOAD 1582 1612 help 1583 1613 This option allows you to force a module to unload, even if the 1584 1614 kernel believes it is unsafe: the kernel will remove the module
+1 -1
kernel/gcov/Kconfig
··· 35 35 config GCOV_PROFILE_ALL 36 36 bool "Profile entire Kernel" 37 37 depends on GCOV_KERNEL 38 - depends on SUPERH || S390 || X86 || (PPC && EXPERIMENTAL) || MICROBLAZE 38 + depends on SUPERH || S390 || X86 || PPC || MICROBLAZE 39 39 default n 40 40 ---help--- 41 41 This options activates profiling for the entire kernel.
+1 -1
net/9p/Kconfig
··· 23 23 guest partitions and a host partition. 24 24 25 25 config NET_9P_RDMA 26 - depends on INET && INFINIBAND && INFINIBAND_ADDR_TRANS && EXPERIMENTAL 26 + depends on INET && INFINIBAND && INFINIBAND_ADDR_TRANS 27 27 tristate "9P RDMA Transport (Experimental)" 28 28 help 29 29 This builds support for an RDMA transport.
+2 -3
net/Kconfig
··· 90 90 91 91 config NETWORK_PHY_TIMESTAMPING 92 92 bool "Timestamping in PHY devices" 93 - depends on EXPERIMENTAL 94 93 help 95 94 This allows timestamping of network packets by PHYs with 96 95 hardware timestamping capabilities. This option adds some ··· 277 278 278 279 config NET_TCPPROBE 279 280 tristate "TCP connection probing" 280 - depends on INET && EXPERIMENTAL && PROC_FS && KPROBES 281 + depends on INET && PROC_FS && KPROBES 281 282 ---help--- 282 283 This module allows for capturing the changes to TCP connection 283 284 state in response to incoming packets. It is used for debugging ··· 294 295 295 296 config NET_DROP_MONITOR 296 297 tristate "Network packet drop alerting service" 297 - depends on INET && EXPERIMENTAL && TRACEPOINTS 298 + depends on INET && TRACEPOINTS 298 299 ---help--- 299 300 This feature provides an alerting service to userspace in the 300 301 event that packets are discarded in the network stack. Alerts
+2 -2
net/ceph/Kconfig
··· 1 1 config CEPH_LIB 2 - tristate "Ceph core library (EXPERIMENTAL)" 3 - depends on INET && EXPERIMENTAL 2 + tristate "Ceph core library" 3 + depends on INET 4 4 select LIBCRC32C 5 5 select CRYPTO_AES 6 6 select CRYPTO
+2 -2
net/dccp/Kconfig
··· 1 1 menuconfig IP_DCCP 2 - tristate "The DCCP Protocol (EXPERIMENTAL)" 3 - depends on INET && EXPERIMENTAL 2 + tristate "The DCCP Protocol" 3 + depends on INET 4 4 ---help--- 5 5 Datagram Congestion Control Protocol (RFC 4340) 6 6
+2 -3
net/dccp/ccids/Kconfig
··· 1 - menu "DCCP CCIDs Configuration (EXPERIMENTAL)" 2 - depends on EXPERIMENTAL 1 + menu "DCCP CCIDs Configuration" 3 2 4 3 config IP_DCCP_CCID2_DEBUG 5 4 bool "CCID-2 debugging messages" ··· 11 12 If in doubt, say N. 12 13 13 14 config IP_DCCP_CCID3 14 - bool "CCID-3 (TCP-Friendly) (EXPERIMENTAL)" 15 + bool "CCID-3 (TCP-Friendly)" 15 16 def_bool y if (IP_DCCP = y || IP_DCCP = m) 16 17 ---help--- 17 18 CCID-3 denotes TCP-Friendly Rate Control (TFRC), an equation-based
+2 -2
net/decnet/Kconfig
··· 25 25 The module is called decnet. 26 26 27 27 config DECNET_ROUTER 28 - bool "DECnet: router support (EXPERIMENTAL)" 29 - depends on DECNET && EXPERIMENTAL 28 + bool "DECnet: router support" 29 + depends on DECNET 30 30 select FIB_RULES 31 31 ---help--- 32 32 Add support for turning your DECnet Endnode into a level 1 or 2
+1 -1
net/decnet/netfilter/Kconfig
··· 3 3 # 4 4 5 5 menu "DECnet: Netfilter Configuration" 6 - depends on DECNET && NETFILTER && EXPERIMENTAL 6 + depends on DECNET && NETFILTER 7 7 depends on NETFILTER_ADVANCED 8 8 9 9 config DECNET_NF_GRABULATOR
+1 -2
net/ieee802154/Kconfig
··· 1 1 config IEEE802154 2 - tristate "IEEE Std 802.15.4 Low-Rate Wireless Personal Area Networks support (EXPERIMENTAL)" 3 - depends on EXPERIMENTAL 2 + tristate "IEEE Std 802.15.4 Low-Rate Wireless Personal Area Networks support" 4 3 ---help--- 5 4 IEEE Std 802.15.4 defines a low data rate, low power and low 6 5 complexity short range wireless personal area networks. It was
+1 -10
net/ipv4/Kconfig
··· 488 488 489 489 config TCP_CONG_HSTCP 490 490 tristate "High Speed TCP" 491 - depends on EXPERIMENTAL 492 491 default n 493 492 ---help--- 494 493 Sally Floyd's High Speed TCP (RFC 3649) congestion control. ··· 498 499 499 500 config TCP_CONG_HYBLA 500 501 tristate "TCP-Hybla congestion control algorithm" 501 - depends on EXPERIMENTAL 502 502 default n 503 503 ---help--- 504 504 TCP-Hybla is a sender-side only change that eliminates penalization of ··· 507 509 508 510 config TCP_CONG_VEGAS 509 511 tristate "TCP Vegas" 510 - depends on EXPERIMENTAL 511 512 default n 512 513 ---help--- 513 514 TCP Vegas is a sender-side only change to TCP that anticipates ··· 517 520 518 521 config TCP_CONG_SCALABLE 519 522 tristate "Scalable TCP" 520 - depends on EXPERIMENTAL 521 523 default n 522 524 ---help--- 523 525 Scalable TCP is a sender-side only change to TCP which uses a ··· 526 530 527 531 config TCP_CONG_LP 528 532 tristate "TCP Low Priority" 529 - depends on EXPERIMENTAL 530 533 default n 531 534 ---help--- 532 535 TCP Low Priority (TCP-LP), a distributed algorithm whose goal is ··· 535 540 536 541 config TCP_CONG_VENO 537 542 tristate "TCP Veno" 538 - depends on EXPERIMENTAL 539 543 default n 540 544 ---help--- 541 545 TCP Veno is a sender-side only enhancement of TCP to obtain better ··· 546 552 547 553 config TCP_CONG_YEAH 548 554 tristate "YeAH TCP" 549 - depends on EXPERIMENTAL 550 555 select TCP_CONG_VEGAS 551 556 default n 552 557 ---help--- ··· 560 567 561 568 config TCP_CONG_ILLINOIS 562 569 tristate "TCP Illinois" 563 - depends on EXPERIMENTAL 564 570 default n 565 571 ---help--- 566 572 TCP-Illinois is a sender-side modification of TCP Reno for ··· 623 631 default "cubic" 624 632 625 633 config TCP_MD5SIG 626 - bool "TCP: MD5 Signature Option support (RFC2385) (EXPERIMENTAL)" 627 - depends on EXPERIMENTAL 634 + bool "TCP: MD5 Signature Option support (RFC2385)" 628 635 select CRYPTO 629 636 select CRYPTO_MD5 630 637 ---help---
+2 -2
net/ipv4/netfilter/Kconfig
··· 241 241 To compile it as a module, choose M here. If unsure, say N. 242 242 243 243 config IP_NF_TARGET_CLUSTERIP 244 - tristate "CLUSTERIP target support (EXPERIMENTAL)" 245 - depends on IP_NF_MANGLE && EXPERIMENTAL 244 + tristate "CLUSTERIP target support" 245 + depends on IP_NF_MANGLE 246 246 depends on NF_CONNTRACK_IPV4 247 247 depends on NETFILTER_ADVANCED 248 248 select NF_CONNTRACK_MARK
+10 -14
net/ipv6/Kconfig
··· 50 50 If unsure, say N. 51 51 52 52 config IPV6_ROUTE_INFO 53 - bool "IPv6: Route Information (RFC 4191) support (EXPERIMENTAL)" 54 - depends on IPV6_ROUTER_PREF && EXPERIMENTAL 53 + bool "IPv6: Route Information (RFC 4191) support" 54 + depends on IPV6_ROUTER_PREF 55 55 ---help--- 56 56 This is experimental support of Route Information. 57 57 58 58 If unsure, say N. 59 59 60 60 config IPV6_OPTIMISTIC_DAD 61 - bool "IPv6: Enable RFC 4429 Optimistic DAD (EXPERIMENTAL)" 62 - depends on EXPERIMENTAL 61 + bool "IPv6: Enable RFC 4429 Optimistic DAD" 63 62 ---help--- 64 63 This is experimental support for optimistic Duplicate 65 64 Address Detection. It allows for autoconfigured addresses ··· 104 105 If unsure, say Y. 105 106 106 107 config IPV6_MIP6 107 - tristate "IPv6: Mobility (EXPERIMENTAL)" 108 - depends on EXPERIMENTAL 108 + tristate "IPv6: Mobility" 109 109 select XFRM 110 110 ---help--- 111 111 Support for IPv6 Mobility described in RFC 3775. ··· 148 150 If unsure, say Y. 149 151 150 152 config INET6_XFRM_MODE_ROUTEOPTIMIZATION 151 - tristate "IPv6: MIPv6 route optimization mode (EXPERIMENTAL)" 152 - depends on EXPERIMENTAL 153 + tristate "IPv6: MIPv6 route optimization mode" 153 154 select XFRM 154 155 ---help--- 155 156 Support for MIPv6 route optimization mode. ··· 168 171 Saying M here will produce a module called sit. If unsure, say Y. 169 172 170 173 config IPV6_SIT_6RD 171 - bool "IPv6: IPv6 Rapid Deployment (6RD) (EXPERIMENTAL)" 172 - depends on IPV6_SIT && EXPERIMENTAL 174 + bool "IPv6: IPv6 Rapid Deployment (6RD)" 175 + depends on IPV6_SIT 173 176 default n 174 177 ---help--- 175 178 IPv6 Rapid Deployment (6rd; draft-ietf-softwire-ipv6-6rd) builds upon ··· 216 219 217 220 config IPV6_MULTIPLE_TABLES 218 221 bool "IPv6: Multiple Routing Tables" 219 - depends on EXPERIMENTAL 220 222 select FIB_RULES 221 223 ---help--- 222 224 Support multiple routing tables. ··· 235 239 If unsure, say N. 236 240 237 241 config IPV6_MROUTE 238 - bool "IPv6: multicast routing (EXPERIMENTAL)" 239 - depends on IPV6 && EXPERIMENTAL 242 + bool "IPv6: multicast routing" 243 + depends on IPV6 240 244 ---help--- 241 245 Experimental support for IPv6 multicast forwarding. 242 246 If unsure, say N. ··· 256 260 If unsure, say N. 257 261 258 262 config IPV6_PIMSM_V2 259 - bool "IPv6: PIM-SM version 2 support (EXPERIMENTAL)" 263 + bool "IPv6: PIM-SM version 2 support" 260 264 depends on IPV6_MROUTE 261 265 ---help--- 262 266 Support for IPv6 PIM multicast routing protocol PIM-SMv2.
+2 -2
net/l2tp/Kconfig
··· 46 46 will be called l2tp_debugfs. 47 47 48 48 config L2TP_V3 49 - bool "L2TPv3 support (EXPERIMENTAL)" 50 - depends on EXPERIMENTAL && L2TP 49 + bool "L2TPv3 support" 50 + depends on L2TP 51 51 help 52 52 Layer Two Tunneling Protocol Version 3 53 53
+1 -2
net/lapb/Kconfig
··· 3 3 # 4 4 5 5 config LAPB 6 - tristate "LAPB Data Link Driver (EXPERIMENTAL)" 7 - depends on EXPERIMENTAL 6 + tristate "LAPB Data Link Driver" 8 7 ---help--- 9 8 Link Access Procedure, Balanced (LAPB) is the data link layer (i.e. 10 9 the lower) part of the X.25 protocol. It offers a reliable
+1 -1
net/mac80211/Kconfig
··· 81 81 82 82 config MAC80211_MESH 83 83 bool "Enable mac80211 mesh networking (pre-802.11s) support" 84 - depends on MAC80211 && EXPERIMENTAL 84 + depends on MAC80211 85 85 ---help--- 86 86 This options enables support of Draft 802.11s mesh networking. 87 87 The implementation is based on Draft 2.08 of the Mesh Networking
+1 -1
net/mac802154/Kconfig
··· 1 1 config MAC802154 2 2 tristate "Generic IEEE 802.15.4 Soft Networking Stack (mac802154)" 3 - depends on IEEE802154 && EXPERIMENTAL 3 + depends on IEEE802154 4 4 select CRC_CCITT 5 5 ---help--- 6 6 This option enables the hardware independent IEEE 802.15.4
+8 -16
net/netfilter/Kconfig
··· 125 125 If unsure, say `N'. 126 126 127 127 config NF_CT_PROTO_DCCP 128 - tristate 'DCCP protocol connection tracking support (EXPERIMENTAL)' 129 - depends on EXPERIMENTAL 128 + tristate 'DCCP protocol connection tracking support' 130 129 depends on NETFILTER_ADVANCED 131 130 default IP_DCCP 132 131 help ··· 138 139 tristate 139 140 140 141 config NF_CT_PROTO_SCTP 141 - tristate 'SCTP protocol connection tracking support (EXPERIMENTAL)' 142 - depends on EXPERIMENTAL 142 + tristate 'SCTP protocol connection tracking support' 143 143 depends on NETFILTER_ADVANCED 144 144 default IP_SCTP 145 145 help ··· 279 281 To compile it as a module, choose M here. If unsure, say N. 280 282 281 283 config NF_CONNTRACK_SANE 282 - tristate "SANE protocol support (EXPERIMENTAL)" 283 - depends on EXPERIMENTAL 284 + tristate "SANE protocol support" 284 285 depends on NETFILTER_ADVANCED 285 286 help 286 287 SANE is a protocol for remote access to scanners as implemented ··· 406 409 407 410 # transparent proxy support 408 411 config NETFILTER_TPROXY 409 - tristate "Transparent proxying support (EXPERIMENTAL)" 410 - depends on EXPERIMENTAL 412 + tristate "Transparent proxying support" 411 413 depends on IP_NF_MANGLE 412 414 depends on NETFILTER_ADVANCED 413 415 help ··· 714 718 this clone be rerouted to another nexthop. 715 719 716 720 config NETFILTER_XT_TARGET_TPROXY 717 - tristate '"TPROXY" target support (EXPERIMENTAL)' 718 - depends on EXPERIMENTAL 721 + tristate '"TPROXY" target support' 719 722 depends on NETFILTER_TPROXY 720 723 depends on NETFILTER_XTABLES 721 724 depends on NETFILTER_ADVANCED ··· 778 783 To compile it as a module, choose M here. If unsure, say N. 779 784 780 785 config NETFILTER_XT_TARGET_TCPOPTSTRIP 781 - tristate '"TCPOPTSTRIP" target support (EXPERIMENTAL)' 782 - depends on EXPERIMENTAL 786 + tristate '"TCPOPTSTRIP" target support' 783 787 depends on IP_NF_MANGLE || IP6_NF_MANGLE 784 788 depends on NETFILTER_ADVANCED 785 789 help ··· 1139 1145 Official Website: <http://snowman.net/projects/ipt_recent/> 1140 1146 1141 1147 config NETFILTER_XT_MATCH_SCTP 1142 - tristate '"sctp" protocol match support (EXPERIMENTAL)' 1143 - depends on EXPERIMENTAL 1148 + tristate '"sctp" protocol match support' 1144 1149 depends on NETFILTER_ADVANCED 1145 1150 default IP_SCTP 1146 1151 help ··· 1151 1158 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'. 1152 1159 1153 1160 config NETFILTER_XT_MATCH_SOCKET 1154 - tristate '"socket" match support (EXPERIMENTAL)' 1155 - depends on EXPERIMENTAL 1161 + tristate '"socket" match support' 1156 1162 depends on NETFILTER_TPROXY 1157 1163 depends on NETFILTER_XTABLES 1158 1164 depends on NETFILTER_ADVANCED
+2 -2
net/rds/Kconfig
··· 1 1 2 2 config RDS 3 - tristate "The RDS Protocol (EXPERIMENTAL)" 4 - depends on INET && EXPERIMENTAL 3 + tristate "The RDS Protocol" 4 + depends on INET 5 5 ---help--- 6 6 The RDS (Reliable Datagram Sockets) protocol provides reliable, 7 7 sequenced delivery of datagrams over Infiniband, iWARP,
+1 -1
net/rxrpc/Kconfig
··· 4 4 5 5 config AF_RXRPC 6 6 tristate "RxRPC session sockets" 7 - depends on INET && EXPERIMENTAL 7 + depends on INET 8 8 select CRYPTO 9 9 select KEYS 10 10 help
+2 -2
net/sctp/Kconfig
··· 3 3 # 4 4 5 5 menuconfig IP_SCTP 6 - tristate "The SCTP Protocol (EXPERIMENTAL)" 7 - depends on INET && EXPERIMENTAL 6 + tristate "The SCTP Protocol" 7 + depends on INET 8 8 depends on IPV6 || IPV6=n 9 9 select CRYPTO 10 10 select CRYPTO_HMAC
+1 -1
net/sunrpc/Kconfig
··· 10 10 11 11 config SUNRPC_XPRT_RDMA 12 12 tristate 13 - depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS && EXPERIMENTAL 13 + depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS 14 14 default SUNRPC && INFINIBAND 15 15 help 16 16 This option allows the NFS client and server to support
+2 -2
net/tipc/Kconfig
··· 3 3 # 4 4 5 5 menuconfig TIPC 6 - tristate "The TIPC Protocol (EXPERIMENTAL)" 7 - depends on INET && EXPERIMENTAL 6 + tristate "The TIPC Protocol" 7 + depends on INET 8 8 ---help--- 9 9 The Transparent Inter Process Communication (TIPC) protocol is 10 10 specially designed for intra cluster communication. This protocol
-1
net/wanrouter/Kconfig
··· 4 4 5 5 config WAN_ROUTER 6 6 tristate "WAN router (DEPRECATED)" 7 - depends on EXPERIMENTAL 8 7 ---help--- 9 8 Wide Area Networks (WANs), such as X.25, frame relay and leased 10 9 lines, are used to interconnect Local Area Networks (LANs) over vast
+1 -2
net/x25/Kconfig
··· 3 3 # 4 4 5 5 config X25 6 - tristate "CCITT X.25 Packet Layer (EXPERIMENTAL)" 7 - depends on EXPERIMENTAL 6 + tristate "CCITT X.25 Packet Layer" 8 7 ---help--- 9 8 X.25 is a set of standardized network protocols, similar in scope to 10 9 frame relay; the one physical line from your box to the X.25 network
+8 -8
net/xfrm/Kconfig
··· 21 21 If unsure, say Y. 22 22 23 23 config XFRM_SUB_POLICY 24 - bool "Transformation sub policy support (EXPERIMENTAL)" 25 - depends on XFRM && EXPERIMENTAL 24 + bool "Transformation sub policy support" 25 + depends on XFRM 26 26 ---help--- 27 27 Support sub policy for developers. By using sub policy with main 28 28 one, two policies can be applied to the same packet at once. ··· 31 31 If unsure, say N. 32 32 33 33 config XFRM_MIGRATE 34 - bool "Transformation migrate database (EXPERIMENTAL)" 35 - depends on XFRM && EXPERIMENTAL 34 + bool "Transformation migrate database" 35 + depends on XFRM 36 36 ---help--- 37 37 A feature to update locator(s) of a given IPsec security 38 38 association dynamically. This feature is required, for ··· 42 42 If unsure, say N. 43 43 44 44 config XFRM_STATISTICS 45 - bool "Transformation statistics (EXPERIMENTAL)" 46 - depends on INET && XFRM && PROC_FS && EXPERIMENTAL 45 + bool "Transformation statistics" 46 + depends on INET && XFRM && PROC_FS 47 47 ---help--- 48 48 This statistics is not a SNMP/MIB specification but shows 49 49 statistics about transformation error (or almost error) factor ··· 68 68 Say Y unless you know what you are doing. 69 69 70 70 config NET_KEY_MIGRATE 71 - bool "PF_KEY MIGRATE (EXPERIMENTAL)" 72 - depends on NET_KEY && EXPERIMENTAL 71 + bool "PF_KEY MIGRATE" 72 + depends on NET_KEY 73 73 select XFRM_MIGRATE 74 74 ---help--- 75 75 Add a PF_KEY MIGRATE message to PF_KEYv2 socket family.
+2 -6
tools/lguest/lguest.txt
··· 29 29 30 30 You will need to configure your kernel with the following options: 31 31 32 - "General setup": 33 - "Prompt for development and/or incomplete code/drivers" = Y 34 - (CONFIG_EXPERIMENTAL=y) 35 - 36 32 "Processor type and features": 37 33 "Paravirtualized guest support" = Y 38 34 "Lguest guest support" = Y ··· 39 43 40 44 "Device Drivers": 41 45 "Block devices" 42 - "Virtio block driver (EXPERIMENTAL)" = M/Y 46 + "Virtio block driver" = M/Y 43 47 "Network device support" 44 48 "Universal TUN/TAP device driver support" = M/Y 45 - "Virtio network driver (EXPERIMENTAL)" = M/Y 49 + "Virtio network driver" = M/Y 46 50 (CONFIG_VIRTIO_BLK=m, CONFIG_VIRTIO_NET=m and CONFIG_TUN=m) 47 51 48 52 "Virtualization"