Commit 350455891377250cf7e0eadc5f9635decc1628af

Authored by Greg Kroah-Hartman
1 parent a9860bf05f

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>

Showing 4 changed files with 32 additions and 0 deletions Side-by-side Diff

... ... @@ -101,5 +101,7 @@
101 101 source "drivers/uio/Kconfig"
102 102  
103 103 source "drivers/xen/Kconfig"
  104 +
  105 +source "drivers/staging/Kconfig"
104 106 endmenu
... ... @@ -99,4 +99,5 @@
99 99 obj-$(CONFIG_SSB) += ssb/
100 100 obj-$(CONFIG_VIRTIO) += virtio/
101 101 obj-$(CONFIG_REGULATOR) += regulator/
  102 +obj-$(CONFIG_STAGING) += staging/
drivers/staging/Kconfig
  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
drivers/staging/Makefile
  1 +# Makefile for staging directory