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>
49 lines
428 B
Plaintext
49 lines
428 B
Plaintext
config A
|
|
bool
|
|
depends on B
|
|
|
|
config B
|
|
bool
|
|
depends on C = 7
|
|
|
|
config C
|
|
int
|
|
range D 8
|
|
|
|
config D
|
|
int
|
|
default 3 if E
|
|
default 8
|
|
|
|
config E
|
|
bool
|
|
|
|
config F
|
|
bool
|
|
select E if G
|
|
|
|
config G
|
|
bool
|
|
depends on H
|
|
|
|
choice
|
|
bool "choice"
|
|
|
|
config H
|
|
bool "H"
|
|
depends on I
|
|
|
|
endchoice
|
|
|
|
choice
|
|
bool "choice" if J
|
|
|
|
config I
|
|
bool "I"
|
|
|
|
endchoice
|
|
|
|
config J
|
|
bool
|
|
depends on A
|