Change-Id: Ie9c902819ed0750a04f8318911fa914701c2a0fe Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/56755 Maintainer: Gabe Black <gabe.black@gmail.com> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Bobby Bruce <bbruce@ucdavis.edu>
31 lines
361 B
Plaintext
31 lines
361 B
Plaintext
config NO_DEP_SYM
|
|
bool
|
|
|
|
config DEP_SYM
|
|
bool
|
|
depends on A
|
|
|
|
config DEP_SYM
|
|
depends on B && C
|
|
|
|
config DEP_SYM
|
|
depends on !D
|
|
|
|
|
|
choice NO_DEP_CHOICE
|
|
bool "no dep. choice"
|
|
endchoice
|
|
|
|
choice DEP_CHOICE
|
|
bool "dep. choice"
|
|
depends on A
|
|
endchoice
|
|
|
|
choice DEP_CHOICE
|
|
depends on B
|
|
endchoice
|
|
|
|
choice DEP_CHOICE
|
|
depends on C
|
|
endchoice
|