Kconfig 263 B

12345678910111213141516171819
  1. menu "Test config"
  2. config PERFORMANCE_LEVEL
  3. int
  4. range 0 3
  5. prompt "Performance level"
  6. config A
  7. bool
  8. default "y"
  9. config B
  10. bool
  11. default "n"
  12. config C
  13. bool
  14. default "y"
  15. endmenu