mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
1408f3f96e
Also add the test to 'python-tests' GitHub actions.
30 lines
353 B
Plaintext
30 lines
353 B
Plaintext
config APPLICATION
|
|
bool
|
|
default y
|
|
depends on MODULE_FOO
|
|
|
|
config MODULE_FOO
|
|
bool "The Foo"
|
|
|
|
config MODULE_BAR
|
|
bool "The Bar"
|
|
depends on MODULE_BAZ
|
|
|
|
config MODULE_BAZ
|
|
bool "The Baz"
|
|
|
|
choice
|
|
bool "Options"
|
|
|
|
config OPT_1
|
|
bool "1"
|
|
|
|
config OPT_2
|
|
bool "2"
|
|
depends on MODULE_BAZ
|
|
|
|
config OPT_3
|
|
bool "3"
|
|
|
|
endchoice
|