Kconfig 473 B

12345678910111213141516171819202122232425262728293031323334353637
  1. config A
  2. bool "A"
  3. help
  4. This is a new symbol.
  5. choice
  6. prompt "Choice ?"
  7. depends on A
  8. help
  9. "depends on A" has been newly added.
  10. config CHOICE_B
  11. bool "Choice B"
  12. config CHOICE_C
  13. bool "Choice C"
  14. help
  15. This is a new symbol, so should be asked.
  16. endchoice
  17. choice
  18. prompt "Choice2 ?"
  19. config CHOICE_D
  20. bool "Choice D"
  21. config CHOICE_E
  22. bool "Choice E"
  23. config CHOICE_F
  24. bool "Choice F"
  25. depends on A
  26. help
  27. This is a new symbol, so should be asked.
  28. endchoice