aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/Kconfig2
-rw-r--r--drivers/Makefile1
-rw-r--r--drivers/staging/Kconfig27
-rw-r--r--drivers/staging/Makefile2
4 files changed, 32 insertions, 0 deletions
diff --git a/drivers/Kconfig b/drivers/Kconfig
index 59f33fa6af3e..d19b6f5a1106 100644
--- a/drivers/Kconfig
+++ b/drivers/Kconfig
@@ -101,4 +101,6 @@ source "drivers/auxdisplay/Kconfig"
101source "drivers/uio/Kconfig" 101source "drivers/uio/Kconfig"
102 102
103source "drivers/xen/Kconfig" 103source "drivers/xen/Kconfig"
104
105source "drivers/staging/Kconfig"
104endmenu 106endmenu
diff --git a/drivers/Makefile b/drivers/Makefile
index 2735bde73475..46c8681a07f4 100644
--- a/drivers/Makefile
+++ b/drivers/Makefile
@@ -99,3 +99,4 @@ obj-$(CONFIG_OF) += of/
99obj-$(CONFIG_SSB) += ssb/ 99obj-$(CONFIG_SSB) += ssb/
100obj-$(CONFIG_VIRTIO) += virtio/ 100obj-$(CONFIG_VIRTIO) += virtio/
101obj-$(CONFIG_REGULATOR) += regulator/ 101obj-$(CONFIG_REGULATOR) += regulator/
102obj-$(CONFIG_STAGING) += staging/
diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig
new file mode 100644
index 000000000000..84832feb56f6
--- /dev/null
+++ b/drivers/staging/Kconfig
@@ -0,0 +1,27 @@
1menuconfig STAGING
2 bool "Staging drivers"
3 default n
4 ---help---
5 This option allows you to select a number of drivers that are
6 not of the "normal" Linux kernel quality level. These drivers
7 are placed here in order to get a wider audience for use of
8 them. Please note that these drivers are under heavy
9 development, may or may not work, and may contain userspace
10 interfaces that most likely will be changed in the near
11 future.
12
13 Using any of these drivers will taint your kernel which might
14 affect support options from both the community, and various
15 commercial support orginizations.
16
17 If you wish to work on these drivers, to help improve them, or
18 to report problems you have with them, please see the
19 driver_name.README file in the drivers/staging/ directory to
20 see what needs to be worked on, and who to contact.
21
22 If in doubt, say N here.
23
24if STAGING
25
26
27endif # STAGING
diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile
new file mode 100644
index 000000000000..ceb0328a64a8
--- /dev/null
+++ b/drivers/staging/Makefile
@@ -0,0 +1,2 @@
1# Makefile for staging directory
2