(RTT_ROOT)
| 440 | |
| 441 | # defconfig for windows and linux |
| 442 | def defconfig(RTT_ROOT): |
| 443 | kconfiglib_check_installed() |
| 444 | |
| 445 | import defconfig |
| 446 | |
| 447 | # Exclude utestcases |
| 448 | exclude_utestcases(RTT_ROOT) |
| 449 | |
| 450 | fn = '.config' |
| 451 | |
| 452 | sys.argv = ['defconfig', '--kconfig', 'Kconfig', '.config'] |
| 453 | defconfig.main() |
| 454 | |
| 455 | # silent mode, force to make rtconfig.h |
| 456 | mk_rtconfig(fn) |
| 457 | |
| 458 | |
| 459 | def genconfig(): |
no test coverage detected