Kconfig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. Using any of these drivers will taint your kernel which might
  13. affect support options from both the community, and various
  14. commercial support orginizations.
  15. If you wish to work on these drivers, to help improve them, or
  16. to report problems you have with them, please see the
  17. driver_name.README file in the drivers/staging/ directory to
  18. see what needs to be worked on, and who to contact.
  19. If in doubt, say N here.
  20. if STAGING
  21. config STAGING_EXCLUDE_BUILD
  22. bool "Exclude Staging drivers from being built" if STAGING
  23. default y
  24. ---help---
  25. Are you sure you really want to build the staging drivers?
  26. They taint your kernel, don't live up to the normal Linux
  27. kernel quality standards, are a bit crufty around the edges,
  28. and might go off and kick your dog when you aren't paying
  29. attention.
  30. Say N here to be able to select and build the Staging drivers.
  31. This option is primarily here to prevent them from being built
  32. when selecting 'make allyesconfg' and 'make allmodconfig' so
  33. don't be all that put off, your dog will be just fine.
  34. if !STAGING_EXCLUDE_BUILD
  35. source "drivers/staging/et131x/Kconfig"
  36. source "drivers/staging/slicoss/Kconfig"
  37. source "drivers/staging/sxg/Kconfig"
  38. source "drivers/staging/me4000/Kconfig"
  39. source "drivers/staging/go7007/Kconfig"
  40. source "drivers/staging/usbip/Kconfig"
  41. source "drivers/staging/winbond/Kconfig"
  42. source "drivers/staging/wlan-ng/Kconfig"
  43. source "drivers/staging/echo/Kconfig"
  44. source "drivers/staging/at76_usb/Kconfig"
  45. source "drivers/staging/poch/Kconfig"
  46. endif # !STAGING_EXCLUDE_BUILD
  47. endif # STAGING