Kconfig 723 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. config MODULES
  2. bool "Enable loadable module support"
  3. option modules
  4. default y
  5. choice
  6. prompt "boolean choice"
  7. default BOOL_CHOICE1
  8. config BOOL_CHOICE0
  9. bool "choice 0"
  10. config BOOL_CHOICE1
  11. bool "choice 1"
  12. endchoice
  13. choice
  14. prompt "optional boolean choice"
  15. optional
  16. default OPT_BOOL_CHOICE1
  17. config OPT_BOOL_CHOICE0
  18. bool "choice 0"
  19. config OPT_BOOL_CHOICE1
  20. bool "choice 1"
  21. endchoice
  22. choice
  23. prompt "tristate choice"
  24. default TRI_CHOICE1
  25. config TRI_CHOICE0
  26. tristate "choice 0"
  27. config TRI_CHOICE1
  28. tristate "choice 1"
  29. endchoice
  30. choice
  31. prompt "optional tristate choice"
  32. optional
  33. default OPT_TRI_CHOICE1
  34. config OPT_TRI_CHOICE0
  35. tristate "choice 0"
  36. config OPT_TRI_CHOICE1
  37. tristate "choice 1"
  38. endchoice