diff options
| author | Karel Kočí <cynerd@email.cz> | 2015-04-19 11:26:10 +0200 | 
|---|---|---|
| committer | Karel Kočí <cynerd@email.cz> | 2015-04-19 11:26:10 +0200 | 
| commit | 7a4fc2b2d97d5c9bb9a9e22dc633def47f4c1385 (patch) | |
| tree | d24d9cb4bb4cc300b43541aae3d066a723e25eee | |
| parent | 58cc393c7dba864439e90a8528741e8c310a3e52 (diff) | |
| download | linux-conf-perf-7a4fc2b2d97d5c9bb9a9e22dc633def47f4c1385.tar.gz linux-conf-perf-7a4fc2b2d97d5c9bb9a9e22dc633def47f4c1385.tar.bz2 linux-conf-perf-7a4fc2b2d97d5c9bb9a9e22dc633def47f4c1385.zip | |
Fix error in initialize script and dedicate config for .config file
| -rw-r--r-- | conf.py | 1 | ||||
| -rw-r--r-- | scripts/initialize.py | 4 | 
2 files changed, 3 insertions, 2 deletions
| @@ -20,6 +20,7 @@ linux_make_args = ['-j8']  # Path settings  linux_sources = pf('linux')  linux_kconfig_head = 'Kconfig' +linux_dot_config = linux_sources + '/.config'  build_folder = pf('build/')  phase_file = build_folder + '/phase' diff --git a/scripts/initialize.py b/scripts/initialize.py index 191d8d1..aca447d 100644 --- a/scripts/initialize.py +++ b/scripts/initialize.py @@ -34,11 +34,11 @@ def gen_requred():  	try:  		os.remove(conf.required_file) -		os.remove(conf.dot_config_file) +		os.remove(conf.dot_config_fragment_file)  	except OSError:  		pass -	shutil.copy(conf.linux_sources + '/.config', conf.dot_config_back_file) +	shutil.copy(conf.linux_dot_config, conf.dot_config_back_file)  	with open(conf.linux_sources + '/.config', 'r') as f:  		with open(conf.required_file, 'w') as freq: | 
