mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
11 lines
312 B
Python
Executable File
11 lines
312 B
Python
Executable File
#!/usr/bin/env python3
|
|
""" Menuconfig variant which uses RiotKconfig as base class """
|
|
import menuconfig
|
|
from riot_kconfig import standard_riot_kconfig
|
|
|
|
# keep documentation from the original tool
|
|
__doc__ = menuconfig.__doc__
|
|
|
|
if __name__ == "__main__":
|
|
menuconfig.menuconfig(standard_riot_kconfig(__doc__))
|