From ef85245f159402fd948ff045b56ad9095d22b39e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 3 Feb 2015 20:57:20 +0100 Subject: Implementing main loop These new scripts are part of main loop. kernel is not finished!! Divides kconfig_parser, sat_solution to better named modules. Phasing and iteration is implemented for loop watching. --- scripts/kconfig_parse.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 scripts/kconfig_parse.py (limited to 'scripts/kconfig_parse.py') diff --git a/scripts/kconfig_parse.py b/scripts/kconfig_parse.py deleted file mode 100755 index 36d690b..0000000 --- a/scripts/kconfig_parse.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/python3 -import os -import sys -import subprocess -from conf import conf - -def kconfig_parser(): - "Execute kconfig_parser in linux_sources directory and parsed output is placed to build_folder." - env = dict(os.environ) - env['SRCARCH'] = conf.SRCARCH - env['ARCH'] = conf.ARCH - env['KERNELVERSION'] = 'KERNELVERSION' - wd = os.getcwd() - os.chdir(conf.linux_sources) - subprocess.call([conf.kconfig_parser, conf.linux_kconfig_head, conf.build_folder], - env=env) - -def main(): - kconfig_parser() - -if __name__ == "__main__": - main() -- cgit v1.2.3