aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2008-09-24 17:46:44 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2008-10-10 18:31:06 -0400
commit350455891377250cf7e0eadc5f9635decc1628af (patch)
tree6a365c9581adab10675801a3e10dc6e2dc6c6309
parenta9860bf05f4cb94f60f8f3459908d5621f75dd06 (diff)
Staging: add Kconfig entries and Makefile infrastructure
This hooks up the drivers/staging directory to the build system Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-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