123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- mainmenu "Simple example to demo cumulative kconfig recursive dependency implication"
- config CORE
- tristate
- config CORE_BELL_A
- tristate
- depends on CORE
- config CORE_BELL_A_ADVANCED
- tristate
- select CORE_BELL_A
- config CORE_BELL_B
- tristate
- depends on !CORE_BELL_A
- select CORE
|