mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
8023aa3d47
This also patches menuconfig.py to use the new class. For now it implements a version of _parse_help which removes Doxygen markers.
11 lines
311 B
Python
Executable File
11 lines
311 B
Python
Executable File
#!/usr/bin/env python
|
|
""" 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__))
|