diff options
-rw-r--r-- | drivers/Kconfig | 2 | ||||
-rw-r--r-- | drivers/Makefile | 1 | ||||
-rw-r--r-- | drivers/staging/Kconfig | 27 | ||||
-rw-r--r-- | drivers/staging/Makefile | 2 |
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" | |||
101 | source "drivers/uio/Kconfig" | 101 | source "drivers/uio/Kconfig" |
102 | 102 | ||
103 | source "drivers/xen/Kconfig" | 103 | source "drivers/xen/Kconfig" |
104 | |||
105 | source "drivers/staging/Kconfig" | ||
104 | endmenu | 106 | endmenu |
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/ | |||
99 | obj-$(CONFIG_SSB) += ssb/ | 99 | obj-$(CONFIG_SSB) += ssb/ |
100 | obj-$(CONFIG_VIRTIO) += virtio/ | 100 | obj-$(CONFIG_VIRTIO) += virtio/ |
101 | obj-$(CONFIG_REGULATOR) += regulator/ | 101 | obj-$(CONFIG_REGULATOR) += regulator/ |
102 | obj-$(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 @@ | |||
1 | menuconfig 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 | |||
24 | if STAGING | ||
25 | |||
26 | |||
27 | endif # 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 | |||