Kconfig 554 B

1234567891011121314151617181920212223242526
  1. # samples/Kconfig
  2. menuconfig SAMPLES
  3. bool "Sample kernel code"
  4. help
  5. You can build and test sample kernel code here.
  6. if SAMPLES
  7. config SAMPLE_MARKERS
  8. tristate "Build markers examples -- loadable modules only"
  9. depends on MARKERS && m
  10. help
  11. This build markers example modules.
  12. config SAMPLE_KOBJECT
  13. tristate "Build kobject examples"
  14. help
  15. This config option will allow you to build a number of
  16. different kobject sample modules showing how to use kobjects,
  17. ksets, and ktypes properly.
  18. If in doubt, say "N" here.
  19. endif # SAMPLES